Add WezTerm support + fix CI (collapsible_match on Rust 1.96)#2
Merged
Merged
Conversation
Ubuntu runner uses Rust 1.96 which catches collapsible_match; collapse the nested if into a match guard on the Enter/Space arm. https://claude.ai/code/session_017EVNoc8mhrztPNg2S1QEA3
WezTerm support (zero code changes, docs only): - lua/paws.lua: update header comment to mention both Kaku and WezTerm - docs/kaku-notes.md: add WezTerm compatibility table (path, auto-reload) - skills/paws-install/SKILL.md: remove Kaku-only precondition, add WezTerm config path and reload instructions throughout - README/README.zh: badge updated to "Works with Kaku & WezTerm", install section shows both config paths CI fix (already pushed separately, included here for completeness): - Collapse nested if into match guard to satisfy clippy::collapsible_match on Rust 1.96 (Ubuntu runner is newer than local toolchain) https://claude.ai/code/session_017EVNoc8mhrztPNg2S1QEA3
0268c1c to
20372dc
Compare
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.
Summary
lua/paws.luaalready uses 100% standard WezTerm APIs with zero code changes needed. This PR makes it official: updates the badge, install docs, SKILL.md, and kaku-notes.md to call out WezTerm as a supported terminal alongside Kaku. Potential audience: WezTerm has ~15k GitHub stars vs Kaku's much smaller install base.clippy::collapsible_match. Fixed by collapsing the nestedifinto a match guard on theEnterarm in the install screen.Changes
lua/paws.luadocs/kaku-notes.mdskills/paws-install/SKILL.mdREADME.md/README.zh.mdsrc/main.rsEnterarm nestedifinto match guard (clippy fix)Test plan
cargo clippy -- -D warningspasses locallycargo test— 3/3 passGenerated by Claude Code