vscode-emacs-friendly icon indicating copy to clipboard operation
vscode-emacs-friendly copied to clipboard

Add Ctrl+p / Ctrl+n support for previous/next in debug repl

Open rlivings39 opened this issue 4 years ago • 0 comments

In the debug repl I frequently want Ctrl+p / Ctrl+n to navigate previous / next in the history. We can do this with:

    {
        "key": "ctrl+p",
        "command": "history.showPrevious",
        "when": "inDebugRepl",
    },
    {
        "key": "ctrl+n",
        "command": "history.showNext",
        "when": "inDebugRepl",
    }

Could those be added?

rlivings39 avatar May 19 '20 12:05 rlivings39