feat: quick open file by path (Cmd+Shift+G)#11
Merged
Conversation
- Add `resolve_file_path` Tauri command that resolves absolute, relative, and tilde (~) paths, returning canonical path, exists, and is_file status - Add "Open by Path..." menu item (Cmd+Shift+G) to File menu, emitting `menu-open-by-path` event to frontend - Upgrade dirs crate from v5 to v6 - Fix pre-existing test compilation errors (missing max_depth arg) - Apply cargo fmt to ai_files.rs and lib.rs Co-Authored-By: Claude Opus 4.6 (1M context) <[email protected]>
Teleport-based modal dialog for opening files by path (Cmd+Shift+G). Resolves paths via resolve_file_path Tauri command, validates existence, and opens in a new tab. Wired into App.vue with keyboard shortcut and menu event listener. Co-Authored-By: Claude Opus 4.6 (1M context) <[email protected]>
Co-Authored-By: Claude Opus 4.6 (1M context) <[email protected]>
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
Cmd+Shift+G(or File > Open by Path...)~for home directory and relative pathsresolve_file_pathRust command handles path expansion and validationTest plan
Cmd+Shift+Gopens the Quick Open dialog~expands to home directory (e.g.,~/Documents/notes.md)pnpm check && pnpm test🤖 Generated with Claude Code