Compare commits

..

2 commits

2 changed files with 16 additions and 1 deletions

View file

@ -105,5 +105,20 @@
"key": "f5", "key": "f5",
"command": "-workbench.action.debug.continue", "command": "-workbench.action.debug.continue",
"when": "debugState == 'stopped'" "when": "debugState == 'stopped'"
},
{
"key": "ctrl+alt+space",
"command": "workbench.action.terminal.triggerSuggest",
"when": "config.terminal.integrated.suggest.enabled && terminalFocus && terminalProcessSupported && !terminalSuggestWidgetVisible"
},
{
"key": "ctrl+space",
"command": "-workbench.action.terminal.triggerSuggest",
"when": "config.terminal.integrated.suggest.enabled && terminalFocus && terminalProcessSupported && !terminalSuggestWidgetVisible"
},
{
"key": "ctrl+alt+space",
"command": "-workbench.action.terminal.suggestToggleDetailsFocus",
"when": "!textInputFocus"
} }
] ]

View file

@ -16,7 +16,7 @@
"scope": "javascript,typescript", "scope": "javascript,typescript",
"prefix": "log", "prefix": "log",
"body": [ "body": [
"console.log(\"$1\");", "console.log($1);",
], ],
"description": "Log output to console" "description": "Log output to console"
} }