Update keybindings.json

This commit is contained in:
lianghongkey 2019-08-17 23:34:43 +08:00 committed by GitHub
parent 68eabbc35a
commit de8c951305
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 5 deletions

View File

@ -160,12 +160,14 @@
"when": "terminalFocus"
},
{
"key": "cmd+shift+t",
"command": "workbench.action.terminal.newInActiveWorkspace"
"key": "cmd+t",
"command": "workbench.action.terminal.newInActiveWorkspace",
"when": "terminalFocus"
},
{
"key": "cmd+shift+w",
"command": "workbench.action.terminal.kill"
"key": "cmd+w",
"command": "workbench.action.terminal.kill",
"when": "terminalFocus"
},
{
"key": "cmd+shift+]",
@ -227,7 +229,7 @@
{
"key": "cmd+t",
"command": "workbench.action.debug.stop",
"when": "inDebugMode"
"when": "inDebugMode && !terminalFocus"
},
{
"key": "cmd+r",
@ -244,4 +246,9 @@
"command": "editor.debug.action.toggleBreakpoint",
"when": "editorTextFocus"
},
{
"key": "shift+cmd+t",
"command": "workbench.action.debug.restart",
"when": "inDebugMode"
},
]