question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Whether plan to support method or class of python module jump like pycharm

See original GitHub issue

I 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:closed
  • Created 5 years ago
  • Comments:7 (5 by maintainers)

github_iconTop GitHub Comments

1reaction
krassowskicommented, Jul 8, 2019

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.

1reaction
krassowskicommented, Mar 12, 2019

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).

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found