dotfiles-remastered/.config/Code - OSS/User/keybindings.json

26 lines
734 B
JSON

// Place your key bindings in this file to override the defaultsauto[]
[
{
"key": "ctrl+enter",
"command": "workbench.action.terminal.toggleTerminal"
},
{
"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"
}
]