From 7171d030e4a677ce7eeeb9d2e675bd30b701dfaf Mon Sep 17 00:00:00 2001 From: Roo Code Date: Tue, 14 Oct 2025 11:30:05 +0000 Subject: [PATCH] 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. --- src/package.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/package.json b/src/package.json index d6d2f4ce60a..297cdf1cfc1 100644 --- a/src/package.json +++ b/src/package.json @@ -310,10 +310,10 @@ "keybindings": [ { "command": "roo-cline.addToContext", - "key": "cmd+y", - "mac": "cmd+y", - "win": "ctrl+y", - "linux": "ctrl+y", + "key": "cmd+k cmd+a", + "mac": "cmd+k cmd+a", + "win": "ctrl+k ctrl+a", + "linux": "ctrl+k ctrl+a", "when": "editorTextFocus && editorHasSelection" }, {