From ac252dc5ed10e4e1059f058a1ec44f270e7e5591 Mon Sep 17 00:00:00 2001 From: Jan-Henrik Bruhn Date: Fri, 10 Oct 2025 12:40:09 +0200 Subject: [PATCH] fix: show keyboard shortcut help should be used with ctrl --- src/hooks/useGlobalShortcuts.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/hooks/useGlobalShortcuts.ts b/src/hooks/useGlobalShortcuts.ts index 45d5c86..9d92991 100644 --- a/src/hooks/useGlobalShortcuts.ts +++ b/src/hooks/useGlobalShortcuts.ts @@ -177,6 +177,7 @@ export function useGlobalShortcuts(options: UseGlobalShortcutsOptions = {}) { id: "show-help", description: "Show Keyboard Shortcuts", key: "?", + ctrl: true, handler: () => options.onOpenHelp?.(), category: "Navigation", enabled: !!options.onOpenHelp,