sudo yum install vim-jedi.noarch -y
Logger. (CONTROL + SPACE)
for autocomplete.
Selecting the function shows the function help.
// To load the module info
:Pyimport os
Apart from that, jedi-vim supports the following commands
- Completion
- Goto assignments
(typical goto function)g - Goto definitions
(follow identifier as far as possible, includes imports and statements)d - Show Documentation/Pydoc
K
(shows a popup with assignments) - Renaming
r - Usages
(shows all the usages of a name)n - Open module, e.g.
:Pyimport os
(opens theos
module)
C - control space
No comments:
Post a Comment