From 68795a52de15439e02373abf7100628b0e5c3e31 Mon Sep 17 00:00:00 2001 From: Djeeberjr Date: Fri, 25 Feb 2022 16:01:57 +0100 Subject: [PATCH] vscode terminal keybindings --- .config/Code - OSS/User/keybindings.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.config/Code - OSS/User/keybindings.json b/.config/Code - OSS/User/keybindings.json index 988023f..1396e7a 100644 --- a/.config/Code - OSS/User/keybindings.json +++ b/.config/Code - OSS/User/keybindings.json @@ -7,5 +7,20 @@ { "key": "ctrl+shift+[Equal]", "command": "-workbench.action.terminal.toggleTerminal" + }, + { + "key": "ctrl+shift+c", + "command": "-workbench.action.terminal.openNativeConsole", + "when": "!terminalFocus" + }, + { + "key": "ctrl+shift+enter", + "command": "workbench.action.terminal.new", + "when": "terminalProcessSupported && terminalFocus" + }, + { + "key": "ctrl+shift+`", + "command": "-workbench.action.terminal.new", + "when": "terminalProcessSupported" } ] \ No newline at end of file