From 6bcbc97253f59deb03fe15017e14fb1469e096d5 Mon Sep 17 00:00:00 2001 From: Evan Krall Date: Tue, 11 Oct 2022 17:03:56 -0700 Subject: [PATCH] Add (shift)ctrl+f3 / (shift)cmd-alt-g key bindings These key bindings select the next (or previous) occurrence of the selected word. --- package.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/package.json b/package.json index 88a5952..23402d1 100644 --- a/package.json +++ b/package.json @@ -585,6 +585,22 @@ "command": "editor.action.smartSelect.grow", "key": "ctrl+shift+space", "when": "editorTextFocus" + }, + { + "mac": "cmd+alt+g", + "linux": "ctrl+f3", + "win": "ctrl+f3", + "key": "ctrl+f3", + "command": "editor.action.nextSelectionMatchFindAction", + "when": "editorTextFocus", + }, + { + "mac": "cmd+alt+shift+g", + "linux": "ctrl+shift+f3", + "win": "ctrl+shift+f3", + "key": "ctrl+shift+f3", + "command": "editor.action.previousSelectionMatchFindAction", + "when": "editorTextFocus", } ] }