Whether plan to support method or class of python module jump like pycharm
See original GitHub issueI have see your demo in README.md
, I notice that below snippets:
In [1]: from statistics import mean
In [3]: measurments = [1, 2, 3]
In [4]: mean(measurments)
Out[4]: 2
When I click measurments
in line 4, the cursor will jump to line 3. But when I click mean
in line 1, whether jupyterlab-go-to-definition
will jump to statistics:mean
source code or not ? In other words, whether support features like Pycharm
code jump while clicking Crtl + mount left button
, thanks !
FYI: https://www.reddit.com/r/vim/comments/8httzu/pycharmgrade_code_jump_for_python/
Issue Analytics
- State:
- Created 5 years ago
- Comments:7 (5 by maintainers)
Top Results From Across the Web
UML class diagrams | PyCharm Documentation - JetBrains
PyCharm lets you generate a diagram on a package in your project. Such diagrams always reflect the structure of actual classes and methods...
Read more >Cannot step into imported module/class - debugger says ...
I'm trying to debug a Python script where a module/class (I'm new to Python, so I'm not sure which word is the right...
Read more >Pycharm doesn't detect / suggest modules, classes, or ...
Pycharm doesn't detect / suggest modules, classes, or functions to import when typing – IDEs Support (IntelliJ Platform) | JetBrains. Please ...
Read more >Python 3.8 support in PyCharm - The JetBrains Blog
From there you will just need to switch to Python 3.8 as your interpreter in PyCharm (if you're not sure how to switch...
Read more >Part 2. Navigate to a declaration, implementation, and test
Place the caret at the method feeds of the instance of the class Cat , and press Ctrl+B . PyCharm jumps to the...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Just FYI, version 0.6 has jumping to symbols (functions, methods, classes) implemented. Clicking on
mean
from your statistics example should now open statistics.py and scroll to the mean definition.I would like to have this feature (I use it all the time in PyCharm), though it would require either writing a backend extension as well or it may need to wait for language server support in JupyterLab (currently in development).