From 5bb696e6d7b02bd29f8b21e3750ccb84cfb4d151 Mon Sep 17 00:00:00 2001 From: Thorsten Ball Date: Mon, 20 Jan 2025 14:11:46 +0100 Subject: [PATCH] keybindings: Fix AcceptPartialInlineCompletion on macOS (#23357) Related issue: https://github.com/zed-industries/zed/issues/20167 Release Notes: - Changed the default keybinding to accept partial inline completions from `ctrl-right` to `ctrl-cmd-right` on macOS, because `ctrl-right` is already bound to jump to the end of the line. Co-authored-by: Antonio Co-authored-by: Kirill Co-authored-by: Bennet --- 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 e768899ec16be90a8e205f93291184e7a189a4b6..57d43bbf3b9601a4f3deab02ac005abcba69309b 100644 --- a/assets/keymaps/default-macos.json +++ b/assets/keymaps/default-macos.json @@ -158,7 +158,7 @@ "bindings": { "alt-tab": "editor::NextInlineCompletion", "alt-shift-tab": "editor::PreviousInlineCompletion", - "ctrl-right": "editor::AcceptPartialInlineCompletion" + "ctrl-cmd-right": "editor::AcceptPartialInlineCompletion" } }, {