Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 0 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -173,12 +173,6 @@
"category": "Python",
"icon": "$(refresh)"
},
{
"command": "python-envs.refreshManager",
"title": "%python-envs.refreshManager.title%",
"category": "Python",
"icon": "$(refresh)"
},
{
"command": "python-envs.refreshPackages",
"title": "%python-envs.refreshPackages.title%",
Expand Down Expand Up @@ -264,10 +258,6 @@
"command": "python-envs.refreshAllManagers",
"when": "false"
},
{
"command": "python-envs.refreshManager",
"when": "false"
},
{
"command": "python-envs.refreshPackages",
"when": "false"
Expand Down Expand Up @@ -348,11 +338,6 @@
"group": "inline",
"when": "view == env-managers && viewItem =~ /.*pythonEnvironment.*/"
},
{
"command": "python-envs.refreshManager",
"group": "inline",
"when": "view == env-managers && viewItem =~ /.*pythonEnvManager.*/"
},
{
"command": "python-envs.createTerminal",
"group": "inline",
Expand Down
3 changes: 1 addition & 2 deletions package.nls.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
"python-envs.reset.title": "Reset to Default",
"python-envs.remove.title": "Delete Environment",
"python-envs.refreshAllManagers.title": "Refresh All Environment Managers",
"python-envs.refreshManager.title": "Refresh Environments List",
"python-envs.refreshPackages.title": "Refresh Packages List",
"python-envs.packages.title": "Manage Packages",
"python-envs.clearCache.title": "Clear Cache",
Expand All @@ -35,4 +34,4 @@
"python-envs.terminal.activate.title": "Activate Environment in Current Terminal",
"python-envs.terminal.deactivate.title": "Deactivate Environment in Current Terminal",
"python-envs.uninstallPackage.title": "Uninstall Package"
}
}
4 changes: 0 additions & 4 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ import {
createTerminalCommand,
getPackageCommandOptions,
handlePackageUninstall,
refreshManagerCommand,
refreshPackagesCommand,
removeEnvironmentCommand,
removePythonProject,
Expand Down Expand Up @@ -147,9 +146,6 @@ export async function activate(context: ExtensionContext): Promise<PythonEnviron
await cleanupStartupScripts(shellStartupProviders);
}),
commands.registerCommand('python-envs.viewLogs', () => outputChannel.show()),
commands.registerCommand('python-envs.refreshManager', async (item) => {
await refreshManagerCommand(item);
}),
commands.registerCommand('python-envs.refreshAllManagers', async () => {
await Promise.all(envManagers.managers.map((m) => m.refresh(undefined)));
}),
Expand Down