I just started using Bash shell from git-scm Windows as VSCode integrated terminal.
I'd like to select all text
of current command using the hotkey I'm familiar with (Ctrl+A
), can I configure the terminal for it?
I just started using Bash shell from git-scm Windows as VSCode integrated terminal.
I'd like to select all text
of current command using the hotkey I'm familiar with (Ctrl+A
), can I configure the terminal for it?
You can add a key binding for the command Terminal Select All
and set a when condition of when the terminal is focused, so it doesn't interfere with other bindings:
JSON:
[
{
"key": "ctrl+a",
"command": "workbench.action.terminal.selectAll",
"when": "terminalFocus"
}
]