hoangKnLai / vscode-ipython

VSCode Extension integrating Editor with IPython console.
MIT License
18 stars 5 forks source link

Improved History Access #1

Closed ktopolov closed 2 years ago

ktopolov commented 2 years ago

Assume I ran cell A, then cell B. When clicking up arrow, I see my history which contains the contents of Cell B:
image

I'd expect that clicking the up arrow a second time would show me the contents of cell A; however, it simply moves my cursor up one line and continues showing the contents of cell B. This makes navigation through history slow.

Suggestion would be to either:

EXIT: Support to move up by a full executed group of lines in one click in the console.

hoangKnLai commented 2 years ago

Command history is solely managed by the IPython console. It seems that the console already use (Ctrl + Up/Down) to navigate command history. For some reason IPython docs don't have much on their keyboard shortcuts.

Here is a page with some shortcuts and description: Command-History-Shortcuts