jedi-vim is a Python input completion tool in Vim. In addition to input completion, you can also jump to the definition destination or definition source. Something like a feature that can be used with IDE tools such as Java's Eclipse.
It's easy to forget the command, so I'll write it as a memorandum.
item | Key | Description |
---|---|---|
g:jedi#completions_command | <Ctrl-Space> |
Start complementing |
g:jedi#goto_command | <leader> d |
Go to Definition (or Assignment) |
g:jedi#goto_assignments_command | <leader> g |
Move to Assignment |
g:jedi#documentation_command | <K> |
pydoc display |
g:jedi#rename_command | <leader> r |
Variable rename |
g:jedi#usages_command | <leader> n |
Display of usage location |
:Pyimport | :Pyimport | Module open |
Recommended Posts