We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d1ac93b commit 2429310Copy full SHA for 2429310
1 file changed
src/features/envCommands.ts
@@ -653,7 +653,7 @@ export async function copyPathToClipboard(item: unknown): Promise<void> {
653
export async function revealProjectInExplorer(item: unknown): Promise<void> {
654
if (item instanceof ProjectItem) {
655
const projectUri = item.project.uri;
656
- await commands.executeCommand('revealFileInOS', projectUri);
+ await commands.executeCommand('revealInExplorer', projectUri);
657
traceInfo(`Revealed project in explorer: ${projectUri.fsPath}`);
658
} else {
659
traceVerbose(`Invalid context for reveal project in explorer: ${item}`);
0 commit comments