What's wrong with this entry?
Multiple keyboard handlers across the UI now properly check that Ctrl and Meta (Cmd) modifiers are not pressed before responding to single-key shortcuts. Previously, pressing Ctrl+X, Ctrl+F, Ctrl+S, Ctrl+K, Ctrl+T, Ctrl+W, or Ctrl+Q could trigger unrelated in-app actions.
Affected areas:
- Shell/task panel:
x(kill),f(focus),t(terminate),k(kill) - Submit confirmation:
s(submit) - Session picker:
q(quit) - Worktree picker:
w(select worktree)
Guards added as !t.ctrl && !t.meta before key checks across ~10 components (search for !t.ctrl && !t.meta in the diff)
Strings lifted out of the shipped bundle, so the claim above can be checked against them.