dotar/vim/settings/python-mode.vim
2017-05-16 02:24:48 +08:00

24 lines
934 B
VimL

" Override go-to.definition key shortcut to Ctrl-]
let g:pymode_rope_goto_definition_bind = "<C-]>"
" Override run current python file key shortcut to Ctrl-Shift-e
let g:pymode_run_bind = "<C-S-e>"
" Override view python doc key shortcut to Ctrl-Shift-d
let g:pymode_doc_bind = "<C-S-d>"
let g:pymode_lint_ignore = "W0611"
let g:pymode_options_max_line_length=160
let g:pymode_rope_lookup_project = 0
augroup filetype_python
autocmd!
"autocmd FileType python set omnifunc=pythoncomplete#Complete
autocmd FileType python setlocal foldmethod=indent
autocmd FileType python nnoremap <F12> :execute "!./" . expand("%") <CR>
autocmd FileType python setlocal foldlevel=99
autocmd FileType python setlocal statusline=%f-%y-[%l]/[%L]
autocmd FileType python nnoremap <buffer> <localleader>c I#cesc>
autocmd FileType python :iabbrev <buffer> iff if:<left>
autocmd FileType python set nowrap
augroup END