fix: show keyboard shortcut help should be used with ctrl

This commit is contained in:
Jan-Henrik Bruhn 2025-10-10 12:40:09 +02:00
parent df95a7c84c
commit ac252dc5ed

View file

@ -177,6 +177,7 @@ export function useGlobalShortcuts(options: UseGlobalShortcutsOptions = {}) {
id: "show-help", id: "show-help",
description: "Show Keyboard Shortcuts", description: "Show Keyboard Shortcuts",
key: "?", key: "?",
ctrl: true,
handler: () => options.onOpenHelp?.(), handler: () => options.onOpenHelp?.(),
category: "Navigation", category: "Navigation",
enabled: !!options.onOpenHelp, enabled: !!options.onOpenHelp,