I'm trying to add a new command for "Control C" on the integrated terminal but for some reason It just work when the terminal is not focused.
Here's the configuration:
{ "key": "shift+backspace", "command": "workbench.action.terminal.sendSequence", "args": { "text": "\u0003" }, } I've also tried to remove the default command for "shift+backspace"
{ "key": "shift+backspace", "command": "-deleteLeft", "when": "textInputFocus && !editorReadonly" } Any ideas why it doesn't work?