forked from VimPlug/jedi-vim
Merge pull request #214 from gotgenes/patch-1
Fixes goto_definitions_command documentation.
This commit is contained in:
@@ -37,6 +37,7 @@ Yann Thomas-Gérard (@inside) <inside@gmail.com>
|
|||||||
Colin Su (@littleq0903) <littleq0903@gmail.com>
|
Colin Su (@littleq0903) <littleq0903@gmail.com>
|
||||||
Justin M. Keyes (@justinmk)
|
Justin M. Keyes (@justinmk)
|
||||||
nagev (@np1)
|
nagev (@np1)
|
||||||
|
Chris Lasher (@gotgenes) <chris.lasher@gmail.com>
|
||||||
|
|
||||||
|
|
||||||
@something are github user names.
|
@something are github user names.
|
||||||
|
|||||||
@@ -225,7 +225,7 @@ the cursor. Just like the `jedi#goto_assignments()` function, it does not work
|
|||||||
if the definition isn't in a Python source file.
|
if the definition isn't in a Python source file.
|
||||||
|
|
||||||
The difference between `jedi#goto_assignments()` and `jedi#goto_definitions()`
|
The difference between `jedi#goto_assignments()` and `jedi#goto_definitions()`
|
||||||
is that the former doesn't perform recursive lookups. Take, for example, the
|
is that the latter performs recursive lookups. Take, for example, the
|
||||||
following module structure: >
|
following module structure: >
|
||||||
|
|
||||||
# file1.py:
|
# file1.py:
|
||||||
@@ -238,9 +238,16 @@ following module structure: >
|
|||||||
def bar():
|
def bar():
|
||||||
pass
|
pass
|
||||||
|
|
||||||
The `jedi#goto_assignments()` function will take you to the "from file2 import
|
The `jedi#goto_assignments()` function will take you to the >
|
||||||
foo" statement in file1.py, while the `jedi#goto_definitions()` function will
|
|
||||||
take you all the way to the "def bar():" line in file3.py.
|
from file2 import foo
|
||||||
|
|
||||||
|
statement in file1.py, while the `jedi#goto_definitions()` function will take
|
||||||
|
you all the way to the >
|
||||||
|
|
||||||
|
def bar():
|
||||||
|
|
||||||
|
line in file3.py.
|
||||||
|
|
||||||
------------------------------------------------------------------------------
|
------------------------------------------------------------------------------
|
||||||
5.4. `g:jedi#documentation_command` *g:jedi#documentation_command*
|
5.4. `g:jedi#documentation_command` *g:jedi#documentation_command*
|
||||||
|
|||||||
Reference in New Issue
Block a user