feat(tui): add @-triggered fuzzy file picker in input#603
Merged
Conversation
2a9c7a1 to
2479a6d
Compare
2479a6d to
2b5ab09
Compare
Add interactive file picker popup to TUI input area. Typing @ in Insert mode opens a fuzzy search overlay that matches project files by name, path, and extension using nucleo-matcher. Results update on each keystroke, with Enter/Tab inserting the relative path at cursor position. Key implementation details: - FileIndex via ignore crate (.gitignore aware, hidden files excluded) - Cached file index with 30s TTL, 50k path cap - Arc-shared index to avoid cloning on picker open - Reusable Matcher instance across keystrokes - Popup anchored above input area, max 10 visible items Closes #600
9eff27a to
0203045
Compare
…DMEs Document @-triggered fuzzy file picker: keybindings table, file index behavior, fuzzy matching details. Update CHANGELOG and docs changelog with #600 entry. Add file_picker module to zeph-tui README.
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
@in Insert modenucleo-matcherImplementation
FileIndexviaignorecrate (.gitignoreaware, hidden files excluded, 50k cap)Arc-shared to avoid cloning on picker openMatcherinstance across keystrokes for zero per-keystroke allocationNew files
crates/zeph-tui/src/file_picker.rs— FilePickerState, FileIndex, fuzzy matchingcrates/zeph-tui/src/widgets/file_picker.rs— popup render widgetTest plan
Closes #600