You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using jedi:goto-definition to jump to function definitions.
If the function has a definiton under import it first jumps into that and I have to do second jump to the module again. Can it directly jump to the module by over passing the import jump?
Here: cursor is on top of my_function. When I do jedi:goto-definition it first jumps to my_function, under import at the top of the file. Than when I do jedi:goto-definition it jump to its definition.
from utils import ( |
my_function, <-----| --------------> | def my_function(arg):
_log | | ....
) | |
| |
my_function("hello") --| # cursor is here
wanted behavior:
my_function("hello") --| # cursor is here ----> | def my_function(arg):
I am using
jedi:goto-definition
to jump to function definitions.If the function has a definiton under
import
it first jumps into that and I have to do second jump to the module again. Can it directly jump to the module by over passing the import jump?Here: cursor is on top of
my_function
. When I dojedi:goto-definition
it first jumps tomy_function,
under import at the top of the file. Than when I dojedi:goto-definition
it jump to its definition.wanted behavior:
setup:
The text was updated successfully, but these errors were encountered: