Fix python indentation

git-svn-id: http://photonzero.com/dotfiles/trunk@38 23f722f6-122a-0410-8cef-c75bd312dd78
This commit is contained in:
michener 2010-03-06 01:19:28 +00:00
parent a819019288
commit 3d98208cca

View file

@ -12,11 +12,12 @@ augroup csv
au! BufNewFile,BufRead *.csv setf csv
augroup END
augroup python
autocmd FileType python set omnifunc=pythoncomplete#Complete
autocmd FileType python call SuperTabSetCompletionType("<C-X><C-O>")
autocmd FileType python set completeopt-=preview
"autocmd FileType python set omnifunc=pythoncomplete#Complete
"autocmd FileType python call SuperTabSetCompletionType("<C-X><C-O>")
"autocmd FileType python set completeopt-=preview
autocmd FileType python set ts=4
autocmd FileType python set softtabstop=4
autocmd FileType python set shiftwidth=4
autocmd FileType python set expandtab
augroup END
au BufRead,BufNewFile *.go set filetype=go