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