From 983bb5c5fce06a21f4eec5081f52385a2bc3a325 Mon Sep 17 00:00:00 2001 From: Kirill Bulatov Date: Fri, 8 Nov 2024 18:07:38 +0200 Subject: [PATCH] Use a different keybinding for `editor::AcceptPartialInlineCompletion` action (#20419) Both `editor::AcceptPartialInlineCompletion` and the keybinding for `editor::MoveToEndOfLine` had the same keybinding inside the editor, and with Supermaven's fast proposals, it's been very frequently used incorrectly. Closes #ISSUE Release Notes: - (breaking change) Use `ctrl-right` instead of `cmd-right` as a macOS default for `editor::AcceptPartialInlineCompletion` --- assets/keymaps/default-macos.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/keymaps/default-macos.json b/assets/keymaps/default-macos.json index 307381996e..a4b49428c8 100644 --- a/assets/keymaps/default-macos.json +++ b/assets/keymaps/default-macos.json @@ -150,7 +150,7 @@ "bindings": { "alt-]": "editor::NextInlineCompletion", "alt-[": "editor::PreviousInlineCompletion", - "cmd-right": "editor::AcceptPartialInlineCompletion" + "ctrl-right": "editor::AcceptPartialInlineCompletion" } }, {