Created
August 24, 2017 19:35
-
-
Save wolever/69daf7dc6692a38699d5c10c3cd784e5 to your computer and use it in GitHub Desktop.
My rope-vim configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| " https://github.com/python-rope/ropevim | |
| Plug 'python-rope/ropevim' | |
| let g:ropevim_guess_project = 1 | |
| let g:ropevim_goto_def_newwin = 'vnew' | |
| let ropevim_vim_completion=1 | |
| let ropevim_extended_complete=1 | |
| autocmd FileType python setlocal omnifunc=RopeCompleteFunc | |
| map <c-c>i :RopeAutoImport<CR> | |
| map <c-c>fo :RopeFindOccurrences<CR> | |
| " <C-c>rr RopeRename | |
| " <C-c>rl RopeExtractVariable | |
| " <C-c>rm RopeExtractMethod | |
| " <C-c>ri RopeInline | |
| " <C-c>rv RopeMove |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment