|
if (event.altKey && event.key === 'k') { |
The handler currently only listens for the Alt + K key combination to open the command palette. This shortcut works as expected on Windows, but it does not trigger on macOS. As a result, macOS users cannot open the command palette using the keyboard.
The handler likely needs macOS-specific modifier key support (e.g., Cmd)
https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/metaKey