Need VSCode sendSequence keybindings for previous command, next command, move to start of line, move to end of line terminal commands
"Can we sendSequence to terminal to show Previous Command/Next Command (like when we click Up/Down Arrow)" { "key": "alt+x", // or whatever you choose "command": "workbench.action.terminal.sendSequence", "args": { "text": "\u001b[A\n" } // 1 up arrow or previous command, works in cmd, git bash and powershell // the \n at the
https://stackoverflow.com/questions/61742559/need-vscode-sendsequence-keybindings-for-previous-command-next-command-move-to#