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 8b98126 commit f8e11f0Copy full SHA for f8e11f0
src/extension.ts
@@ -139,6 +139,19 @@ export async function activate(context: vscode.ExtensionContext): Promise<IPower
139
new PesterTestsFeature(sessionManager, logger),
140
new CodeActionsFeature(logger),
141
new SpecifyScriptArgsFeature(context),
142
+
143
+ vscode.commands.registerCommand(
144
+ "PowerShell.OpenLogFolder",
145
+ async () => {await vscode.commands.executeCommand(
146
+ "vscode.openFolder",
147
+ context.logUri,
148
+ { forceNewWindow: true }
149
+ );}
150
+ ),
151
152
+ "PowerShell.ShowLogs",
153
+ () => {logger.showLogPanel();}
154
+ )
155
];
156
157
const externalApi = new ExternalApiFeature(context, sessionManager, logger);
0 commit comments