From 9d0dc840ddfcba861545d26915f69c2621c73f88 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Thu, 6 Mar 2025 20:00:01 +0000 Subject: [PATCH] fix(cursor): add workaround keybinding for accept next suggested word --- cursor/keybindings.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/cursor/keybindings.json b/cursor/keybindings.json index 2952984..0a991df 100644 --- a/cursor/keybindings.json +++ b/cursor/keybindings.json @@ -372,6 +372,18 @@ "command": "toggleSuggestionDetails", "when": "editorTextFocus && suggestWidgetVisible" }, + { // Accept next word. + "key": "shift+alt+f", + "command": "editor.action.inlineSuggest.acceptNextWord" + }, + { // Accept next word. + // + // This is a workaround for alt+f not working globally to move to next word + // in all input fields. This relies on Karabiner-Elements to remap alt+f to + // alt+right arrow. + "key": "shift+alt+right", + "command": "editor.action.inlineSuggest.acceptNextWord" + }, // // =========================================================================== // MARK: Text navigation