From eadddc65096c67f7eee948aefc9d72e8fd50c79a 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 bea7d54e69..dd7d3672c1 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" } }, {