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