doc: goto_stubs mapping <leader>s (#989)

Co-Authored-By: Daniel Hahler <github@thequod.de>
This commit is contained in:
Aleksandrs Stier
2020-01-24 20:11:02 +01:00
committed by Daniel Hahler
parent e8790b1d8f
commit c9bdefca54
2 changed files with 9 additions and 8 deletions

View File

@@ -58,9 +58,10 @@ generators, there is broad support.
Apart from that, jedi-vim supports the following commands
- Completion ``<C-Space>``
- Goto assignments ``<leader>g`` (typical goto function)
- Goto definitions ``<leader>d`` (follow identifier as far as possible,
- Goto assignment ``<leader>g`` (typical goto function)
- Goto definition ``<leader>d`` (follow identifier as far as possible,
includes imports and statements)
- Goto (typing) stub ``<leader>s``
- Show Documentation/Pydoc ``K`` (shows a popup with assignments)
- Renaming ``<leader>r``
- Usages ``<leader>n`` (shows all the usages of a name)
@@ -198,6 +199,7 @@ get more information. If you set them to ``""``, they are not assigned.
let g:jedi#goto_command = "<leader>d"
let g:jedi#goto_assignments_command = "<leader>g"
let g:jedi#goto_stubs_command = "<leader>s"
let g:jedi#goto_definitions_command = ""
let g:jedi#documentation_command = "K"
let g:jedi#usages_command = "<leader>n"