fix(chrome): include spaced paths in @ mentions and refresh the file index - #17
Merged
Merged
Conversation
…index Keep @ tokens whitespace-delimited by encoding spaces as hyphens, and rescan project files on picker open, window focus, and directory-change notifications so newly pasted files appear without an unrelated reload. Co-authored-by: Warexpor <warexpor@gmail.com>
Warexpor
marked this pull request as ready for review
September 4, 2026 20:02
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.
What changed
Composer
@now lists files and folders whose names contain spaces. The project file index refreshes when the picker opens, on window focus, and on existing directory-change notifications, instead of keeping a stale in-memory listing.Spaced paths still insert as a single whitespace-delimited
@token (spaces become hyphens). On send, the prompt maps that token back to the real project-relative path.Why
@skipped any path with whitespace because tokens are one word, so names likeMy Photos/cat.pngnever appeared. The file list also cached until cwd changed, so files copied into the project from Finder stayed missing until something else reloaded the index.This matches upstream hardbeat920/monocode#66.
UI
Behavior only. Copy a file or a folder (including names with spaces) into the project, return to MonoCode, type
@plus part of the name, pick it, and confirm it is referenced in the prompt.Checklist
npm run check:web(vitest +tsc --noEmit; no Rust changes)