Mirror the Build view into the file Explorer - #16
Open
ChrisonSimtian wants to merge 1 commit into
Open
Conversation
This was referenced Aug 14, 2026
Adds `fallout.buildExplorer`, a second home for the build targets docked in the Explorer, collapsed by default so it costs nothing until opened. It is the *same* provider instance, not a second one — so the graph is loaded once and a single refresh() updates both views. Registering a second instance would double the file watching and let the two drift apart. The view/title and view/item/context when-clauses now match either view, which is why the run/go-to inline actions work identically in both. Closes #10 Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
ChrisonSimtian
force-pushed
the
feature/build-view-restructure
branch
from
August 14, 2026 23:49
80e407b to
b9fc023
Compare
ChrisonSimtian
force-pushed
the
feature/build-explorer-dock
branch
from
August 14, 2026 23:49
fd68ec2 to
65888af
Compare
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.
2/6 of the #2 split. Closes #10. Based on #15 — merge that first.
Adds
fallout.buildExplorer, a second home for the build targets docked in the Explorer, collapsed by default so it costs nothing until opened.The part worth reviewing
It registers the same provider instance, not a second one:
So the graph is parsed once and a single
refresh()updates both views. A second instance would double the file watching and let the two drift out of sync — one showing a stale graph after a rebuild.The
view/titleandview/item/contextwhen-clauses now match either view, which is what makes the run and go-to-definition inline actions behave identically in both homes.🤖 Generated with Claude Code