We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06b416f commit c181db1Copy full SHA for c181db1
src/extension.ts
@@ -135,6 +135,19 @@ export async function activate(context: vscode.ExtensionContext): Promise<IPower
135
new PesterTestsFeature(sessionManager, logger),
136
new CodeActionsFeature(logger),
137
new SpecifyScriptArgsFeature(context),
138
+
139
+ vscode.commands.registerCommand(
140
+ "PowerShell.OpenLogFolder",
141
+ async () => {await vscode.commands.executeCommand(
142
+ "vscode.openFolder",
143
+ context.logUri,
144
+ { forceNewWindow: true }
145
+ );}
146
+ ),
147
148
+ "PowerShell.ShowLogs",
149
+ () => {logger.showLogPanel();}
150
+ )
151
];
152
153
const externalApi = new ExternalApiFeature(context, sessionManager, logger);
0 commit comments