We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2429310 commit 93a5369Copy full SHA for 93a5369
2 files changed
package.json
@@ -407,7 +407,6 @@
407
},
408
{
409
"command": "python-envs.revealProjectInExplorer",
410
- "group": "inline",
411
"when": "view == python-projects && viewItem =~ /.*python-workspace.*/"
412
413
src/features/envCommands.ts
@@ -654,7 +654,6 @@ export async function revealProjectInExplorer(item: unknown): Promise<void> {
654
if (item instanceof ProjectItem) {
655
const projectUri = item.project.uri;
656
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}`);
660
}
0 commit comments