Bug Report
When SuperCmd is running in the background, pressing Shift+Y produces no character output at all. The keystroke appears to be silently consumed or blocked by SuperCmd rather than passed through to the active application.
Steps to reproduce:
- Launch SuperCmd
- Switch to any text input field (e.g. a text editor or browser address bar)
- Press
Shift+Y
Expected behavior: uppercase Y is typed into the active field.
Actual behavior: nothing is typed, the character is swallowed entirely.
Additional context:
Shift+T works correctly and produces uppercase T
- Only certain
Shift+<key> combos seem affected; Shift+Y is a confirmed case
- The issue is reproducible with SuperCmd running but does not occur once the app is quit
- Reproduced on v1.0.8 and confirmed present on older versions as well
- Likely related to global hotkey registration or keyboard event interception in the Swift native helpers or Electron's
globalShortcut module capturing Shift+Y for an internal binding
Possible root cause:
SuperCmd likely registers Shift+Y (or a conflicting key combo) as a global shortcut via Electron's globalShortcut.register() or via the Swift hotkey helper, preventing the OS from forwarding the event to the focused app.
Version: 1.0.8
OS: macOS 15
Bug Report
When SuperCmd is running in the background, pressing
Shift+Yproduces no character output at all. The keystroke appears to be silently consumed or blocked by SuperCmd rather than passed through to the active application.Steps to reproduce:
Shift+YExpected behavior: uppercase
Yis typed into the active field.Actual behavior: nothing is typed, the character is swallowed entirely.
Additional context:
Shift+Tworks correctly and produces uppercaseTShift+<key>combos seem affected;Shift+Yis a confirmed caseglobalShortcutmodule capturingShift+Yfor an internal bindingPossible root cause:
SuperCmd likely registers
Shift+Y(or a conflicting key combo) as a global shortcut via Electron'sglobalShortcut.register()or via the Swift hotkey helper, preventing the OS from forwarding the event to the focused app.Version: 1.0.8
OS: macOS 15