Add folder browser and branch switcher dialogs#5
Merged
Conversation
Adds two new modal dialogs that follow the existing modal pattern: - Folder browser (b key): Navigate the filesystem to find and open git repos. Shows directories with green dot badges for git repos, supports hidden file toggle (.), backspace to go up, and opens repos on Enter. - Branch switcher (B key): Lists local branches, highlights current branch, and checks out the selected branch on Enter. Both dialogs use the same GPU-rendered modal overlay system with styled rectangles, scrollable lists, and keyboard navigation. Includes new git operations (list_branches, checkout_branch) and toolbar buttons. https://claude.ai/code/session_01KZkMKjBBxGt2MiRrY8ftiU
The custom in-app folder browser required tedious manual navigation from the filesystem root. Replace it with rfd (Rust File Dialog) which opens the native OS folder picker (Finder on macOS, GTK on Linux, Explorer on Windows). Users can now browse their actual disk and select any folder to open as a git repo. Also removes unused folder browser theme constants and state fields. https://claude.ai/code/session_01KZkMKjBBxGt2MiRrY8ftiU
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.
Adds two new modal dialogs that follow the existing modal pattern:
Folder browser (b key): Navigate the filesystem to find and open git repos. Shows directories with green dot badges for git repos, supports hidden file toggle (.), backspace to go up, and opens repos on Enter.
Branch switcher (B key): Lists local branches, highlights current branch, and checks out the selected branch on Enter.
Both dialogs use the same GPU-rendered modal overlay system with styled rectangles, scrollable lists, and keyboard navigation. Includes new git operations (list_branches, checkout_branch) and toolbar buttons.
https://claude.ai/code/session_01KZkMKjBBxGt2MiRrY8ftiU