" Override go-to.definition key shortcut to Ctrl-] let g:pymode_rope_goto_definition_bind = "" " Override run current python file key shortcut to Ctrl-Shift-e let g:pymode_run_bind = "" " Override view python doc key shortcut to Ctrl-Shift-d let g:pymode_doc_bind = "" 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 :execute "!./" . expand("%") autocmd FileType python setlocal foldlevel=99 autocmd FileType python setlocal statusline=%f-%y-[%l]/[%L] autocmd FileType python nnoremap c I#cesc> autocmd FileType python :iabbrev iff if: autocmd FileType python set nowrap augroup END