Skip to content

Commit 7171d03

Browse files
committed
fix: change "Add to Context" keybinding to avoid Redo conflict
Fixes #8652 Changed the keyboard shortcut for "Add to Context" from Ctrl+Y/Cmd+Y to Ctrl+K Ctrl+A (Cmd+K Cmd+A on Mac) to avoid conflicting with the standard Redo operation in VS Code.
1 parent 6b8c21f commit 7171d03

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -310,10 +310,10 @@
310310
"keybindings": [
311311
{
312312
"command": "roo-cline.addToContext",
313-
"key": "cmd+y",
314-
"mac": "cmd+y",
315-
"win": "ctrl+y",
316-
"linux": "ctrl+y",
313+
"key": "cmd+k cmd+a",
314+
"mac": "cmd+k cmd+a",
315+
"win": "ctrl+k ctrl+a",
316+
"linux": "ctrl+k ctrl+a",
317317
"when": "editorTextFocus && editorHasSelection"
318318
},
319319
{

0 commit comments

Comments
 (0)