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

26 lines
734 B
JSON
Raw Normal View History

2020-11-15 23:13:47 +00:00
// 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"
2022-02-25 15:01:57 +00:00
},
{
"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"
2020-11-15 23:13:47 +00:00
}
]