Conversation
… README (#62) The four "Track Tab Switcher State" reset manipulators (left/right control and option) had no from.modifiers, so per the Karabiner docs they only matched when no other modifier was held. Ctrl+Shift+Tab (previous tab) therefore never fired to_after_key_up, ctrl_tab_active stayed 1, and Ctrl+Arrow word navigation stayed disabled until the next bare Ctrl tap. Add "optional": ["any"] so the reset matches with any modifier held; optional modifiers are preserved in the to events. README: document the Ghostty Hyper+S/F and Cmd+. emoji rules, split Ctrl+Left/Right (Option) from Ctrl+Up/Down (Cmd), note that treat_as_built_in_keyboard is pinned to one device ID, and replace the cp/ln install steps with the repo mise run link / stow flow.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
A Karabiner
fromwith nomodifiersblock matches only when nothing else is held. The four manipulators that reset the tab-switcher state were written that way, so under Ctrl+Shift+Tab — Shift already down before Ctrl goes down — the reset never matched,ctrl_tab_activestayed set, and Ctrl+Left/Right word navigation stayed disabled until the next bare Ctrl tap. Same for Alt+Shift+Tab.The README had drifted alongside it: three rules undocumented, Ctrl+Up/Down described as mapping to Option like the Left/Right pair does, and install steps that predate
mise run link.There is no Mac in this environment, so these manipulators are written off the Karabiner docs and never observed. Worth trying Ctrl+Shift+Tab and then Ctrl+Left in a browser once Karabiner reloads the file, which is the exact sequence that was failing.
Closes #62