From cc15598e0920f557c09d51b61582497a054d93fb Mon Sep 17 00:00:00 2001 From: Peter Tripp Date: Tue, 8 Apr 2025 14:46:03 +0000 Subject: [PATCH] keymap: Document conflicting macos ctrl-shift-space shortcut (#28325) Closes https://github.com/zed-industries/zed/issues/26261 Release Notes: - N/A --- assets/keymaps/default-macos.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/assets/keymaps/default-macos.json b/assets/keymaps/default-macos.json index 49c0b65b534796154d54295c144fb0dbbee0d142..742b2a2a98b00c75db910e453ba8ea4bde189b1b 100644 --- a/assets/keymaps/default-macos.json +++ b/assets/keymaps/default-macos.json @@ -525,7 +525,7 @@ "cmd-k cmd-9": ["editor::FoldAtLevel", 9], "cmd-k cmd-0": "editor::FoldAll", "cmd-k cmd-j": "editor::UnfoldAll", - // Using `ctrl-space` in Zed requires disabling the macOS global shortcut. + // Using `ctrl-space` / `ctrl-shift-space` in Zed requires disabling the macOS global shortcut. // System Preferences->Keyboard->Keyboard Shortcuts->Input Sources->Select the previous input source (uncheck) "ctrl-space": "editor::ShowCompletions", "ctrl-shift-space": "editor::ShowWordCompletions", @@ -1003,6 +1003,8 @@ "cmd-home": "terminal::ScrollToTop", "shift-end": "terminal::ScrollToBottom", "cmd-end": "terminal::ScrollToBottom", + // Using `ctrl-shift-space` in Zed requires disabling the macOS global shortcut. + // System Preferences->Keyboard->Keyboard Shortcuts->Input Sources->Select the previous input source (uncheck) "ctrl-shift-space": "terminal::ToggleViMode", "ctrl-k up": "pane::SplitUp", "ctrl-k down": "pane::SplitDown",