file_finder: Fix "Reveal in File Manager" for WSL remote connections on Windows#46856
Closed
maxmalkin wants to merge 16 commits intozed-industries:mainfrom
Closed
file_finder: Fix "Reveal in File Manager" for WSL remote connections on Windows#46856maxmalkin wants to merge 16 commits intozed-industries:mainfrom
maxmalkin wants to merge 16 commits intozed-industries:mainfrom
Conversation
Veykril
reviewed
Jan 15, 2026
Contributor
maxdeviant
reviewed
Jan 15, 2026
Veykril
approved these changes
Jan 16, 2026
auto-merge was automatically disabled
January 16, 2026 19:56
Head branch was pushed to by a user without write access
Contributor
|
To note, there's #47236 that seems like a good part of the same issue: project panel could use a context menu item same as other OSes have it. |
auto-merge was automatically disabled
January 22, 2026 11:24
Pull request was closed
pull bot
pushed a commit
to blog2i2j/zed-industries.._..zed
that referenced
this pull request
Jan 22, 2026
Assimilates zed-industries#46856 and adds support for reveal file manager in the project panel on wsl. Closes zed-industries#46856 Release Notes: - Fixed "Reveal in File Manager" not working for WSL remote connections on Windows. - Show "Reveal in File Manager" in the project panel context menu on WSL --------- Co-authored-by: Max Malkin <maxim_malkin@outlook.com>
zcg
pushed a commit
to zcg/zedpro
that referenced
this pull request
Jan 29, 2026
Assimilates zed-industries#46856 and adds support for reveal file manager in the project panel on wsl. Closes zed-industries#46856 Release Notes: - Fixed "Reveal in File Manager" not working for WSL remote connections on Windows. - Show "Reveal in File Manager" in the project panel context menu on WSL --------- Co-authored-by: Max Malkin <maxim_malkin@outlook.com>
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.
Closes #46767
Release Notes:
When using WSL remote connections on Windows, the "Reveal in File Manager" command fail without panicking.This happened because the worktree stores POSIX paths. Adds a
to_unc_pathmethod toWslConnectionOptionsthat converts POSIX paths to Windows UNC format. Thereveal_in_finderhandlers in the project panel, editor, and outline panel now check for WSL connections on Windows and convert paths accordingly before passing them to Explorer.