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
There are many issues about Ctrl+I working in ipython console but not in the editor. The more I use spyder the more I hate that I have to copy the line to ipython console to inspect the object and switch back to the editor to continue.
Is it possible to implement a patch or plugin for the short term until this issue is solved? For example maybe:
Instead of copying the line to ipython console, Ctrl+I to inspect it, then switching back to the editor to continue. Make this working automatically with a shortcut key. Or:
Another inspecting behavior to inspect an object in the editor, trick spyder to believe it's in the ipython console.
Or if it's not the dev team's interest, can someone point out a way how to implement this?
The text was updated successfully, but these errors were encountered:
gepcel
changed the title
Ctrl+I, currently is there a way to trick spyder to inspect from ipyconsole when in editor?
Ctrl+I, currently is there a way to trick spyder to inspect from ipyconsole when actually in editor?
Apr 25, 2019
And you also need to learn about Abstract Syntax Trees in Python (i.e. its ast module) to detect definitions in your code, i.e. things like a = 10 and evaluate those assignments in the kernel.
If/once you have something working, we can take a look at it and include it in Spyder. Thanks for understanding.
There are many issues about Ctrl+I working in ipython console but not in the editor. The more I use spyder the more I hate that I have to copy the line to ipython console to inspect the object and switch back to the editor to continue.
Is it possible to implement a patch or plugin for the short term until this issue is solved? For example maybe:
Or if it's not the dev team's interest, can someone point out a way how to implement this?
The text was updated successfully, but these errors were encountered: