Skip to content

Commit 2429310

Browse files
Copiloteleanorjboyd
andcommitted
Change reveal command to use VS Code Explorer instead of OS explorer
Co-authored-by: eleanorjboyd <26030610+eleanorjboyd@users.noreply.github.com>
1 parent d1ac93b commit 2429310

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/features/envCommands.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -653,7 +653,7 @@ export async function copyPathToClipboard(item: unknown): Promise<void> {
653653
export async function revealProjectInExplorer(item: unknown): Promise<void> {
654654
if (item instanceof ProjectItem) {
655655
const projectUri = item.project.uri;
656-
await commands.executeCommand('revealFileInOS', projectUri);
656+
await commands.executeCommand('revealInExplorer', projectUri);
657657
traceInfo(`Revealed project in explorer: ${projectUri.fsPath}`);
658658
} else {
659659
traceVerbose(`Invalid context for reveal project in explorer: ${item}`);

0 commit comments

Comments
 (0)