From 4d71687ddcfe7080ec603da196d53f79fc62c9a0 Mon Sep 17 00:00:00 2001 From: Alessandro Pogliaghi Date: Wed, 22 Jul 2026 14:58:02 +0100 Subject: [PATCH] fix(shortcuts): bind Steer/Queue toggle to Ctrl+S instead of Cmd+S SWITCH_MESSAGING_MODE used "mod+s", which maps to Cmd on macOS. Bind it to the literal Ctrl key so the toggle is consistent across platforms (and not Cmd-dependent on Mac). Generated-By: PostHog Code Task-Id: d892bbfc-d26c-4b72-ac04-fbe4c6e52a93 --- packages/ui/src/features/command/keyboard-shortcuts.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/ui/src/features/command/keyboard-shortcuts.ts b/packages/ui/src/features/command/keyboard-shortcuts.ts index 177de7666a..70dc6870a3 100644 --- a/packages/ui/src/features/command/keyboard-shortcuts.ts +++ b/packages/ui/src/features/command/keyboard-shortcuts.ts @@ -32,7 +32,7 @@ export const SHORTCUTS = { MESSAGE_JUMP: "mod+j", BLUR: "escape", SUBMIT_BLUR: "mod+enter", - SWITCH_MESSAGING_MODE: "mod+s", + SWITCH_MESSAGING_MODE: "ctrl+s", RELOAD_WINDOW: "mod+shift+r", ZOOM_IN: "mod+=", ZOOM_OUT: "mod+-",