[Repo Assist] chore: cargo update + fix missing s keybinding in help overlay#159
Draft
github-actions[bot] wants to merge 2 commits intomainfrom
Draft
Conversation
Two small maintenance changes: 1. cargo update — patch dependency bumps - libc 0.2.185 → 0.2.186 - typenum 1.19.0 → 1.20.0 - wasip2 1.0.2 → 1.0.3 - wit-bindgen 0.57.1 (new indirect dep) 2. Fix missing s key in help overlay The handler accepts both / and s for search/local-filter, but the ? help screen only showed /. Updated to show '/ or s'. This is a fresh rebased version of PR #154, which had a Cargo.lock conflict with the v0.10.0 release commit. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This was referenced Apr 28, 2026
Pick up 10 additional patch-level updates since initial commit: - js-sys 0.3.95 → 0.3.97 - siphasher 1.0.2 → 1.0.3 - wasm-bindgen 0.2.118 → 0.2.120 (+ macro / macro-support / shared) - futures-core / futures-task / futures-util 0.3.32 (added) - slab 0.4.12 (added) All checks pass: cargo check, fmt, test (231 tests), clippy. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
Author
|
Commit pushed:
|
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.
🤖 This PR was created by Repo Assist, an automated AI assistant.
What
Two small maintenance changes:
1.
cargo update— patch dependency bumpslibctypenumwasip2wit-bindgenAll are indirect / build-tool dependencies; no production behaviour changes.
2. Fix missing
skey in help overlayhandler.rshas always accepted both/andsto enter search or local-filter mode (same key match arm, documented inAGENTS.md), but the?help screen only showed/. Updated the label from/to/ or sto match the actual implementation.Why
Cargo.lockconflict with the v0.10.0 release commit. The changes are identical; only the base was updated tomain.sworks but can't find it in the built-in?help.Test Status
No behaviour changes; no new/modified production logic. PR #154 can be closed in favour of this one.