We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7cea36b commit 369cd87Copy full SHA for 369cd87
src/extension.ts
@@ -177,7 +177,9 @@ export async function activate(context: ExtensionContext): Promise<PythonEnviron
177
}),
178
commands.registerCommand('python-envs.viewLogs', () => outputChannel.show()),
179
commands.registerCommand('python-envs.refreshAllManagers', async () => {
180
- await Promise.all(envManagers.managers.map((m) => m.refresh(undefined)));
+ await window.withProgress({ location: { viewId: 'env-managers' } }, async () => {
181
+ await Promise.all(envManagers.managers.map((m) => m.refresh(undefined)));
182
+ });
183
184
commands.registerCommand('python-envs.refreshPackages', async (item) => {
185
await refreshPackagesCommand(item, envManagers);
0 commit comments