Issue 250115 Highlight Parent Folders in Explorer Tree for Active File#279724
Open
peterasorensen wants to merge 1 commit intomicrosoft:mainfrom
Open
Issue 250115 Highlight Parent Folders in Explorer Tree for Active File#279724peterasorensen wants to merge 1 commit intomicrosoft:mainfrom
peterasorensen wants to merge 1 commit intomicrosoft:mainfrom
Conversation
Contributor
📬 CODENOTIFYThe following users are being notified based on files changed in this PR: @bpaseroMatched files:
|
Author
@microsoft-github-policy-service agree |
5a008d4 to
7084110
Compare
e8b6b07 to
0bde1b3
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.
Highlight ancestor folders of selected file in Explorer
Issue: #250115
Summary
Desktop Explorer Focused

Desktop Explorer Unfocused

Code Server Web Explorer Focused

Code Server Web Explorer Unfocused

Problem
When a file is selected in the Explorer, only the file itself is highlighted. This makes it difficult to quickly identify the parent folder structure, especially in deeply nested trees:
Solution
Highlight all ancestor folders to reflect the currently active file path:
Implementation
focusedItemAncestorUrisSet to track ancestor folder URIs. Uses URI strings (not object references) to survive tree refreshes when VS Code regains focus.onDidChangeSelectionto update ancestors when selection changesonDidFocusto re-render ancestors when tree regains DOM focusupdateAncestorHighlight()andrerenderAncestors()methods:has()selector to highlight full row:rgba(128, 128, 128, 0.13)) when unfocusedrgba(0, 120, 212, 0.13)) when focused (via:focus-within)Test Plan
Unit Tests confirmed passing.