I'd like to have Ctrl+C copy and Ctrl+Shift+C send Ctrl+C (interrupt).
I figured out the first half
{
"key": "ctrl+c",
"command": "workbench.action.terminal.copySelection",
"when": "terminalFocus"
}
But how do I do the second half? Is there a command to send an arbitrary key press to the terminal?