Skip to content

Commit b6fb456

Browse files
spewRob Leidle
and
Rob Leidle
authored
Fix an issue where CMD+K does not clear the terminal when the terminal has focus (#1671)
On MacOS, ⌘+K is bound, by default, to Terminal:Clear. Without this change ⌘+K does not clear the terminal but instead iniates a chord sequence and waits for the next stroke of the chord. Co-authored-by: Rob Leidle <[email protected]>
1 parent 188f4da commit b6fb456

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

extensions/vscode/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,8 @@
317317
{
318318
"command": "continue.toggleTabAutocompleteEnabled",
319319
"mac": "cmd+k cmd+a",
320-
"key": "ctrl+k ctrl+a"
320+
"key": "ctrl+k ctrl+a",
321+
"when": "!terminalFocus"
321322
}
322323
],
323324
"submenus": [

0 commit comments

Comments
 (0)