Skip to content

Commit cc2c6eb

Browse files
Fix title of PowerShell Command Explorer pane (#3866)
It's no longer in preview, and the title was repetitive.
1 parent f54d0fd commit cc2c6eb

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -92,17 +92,17 @@
9292
"viewsContainers": {
9393
"activitybar": [
9494
{
95-
"id": "PowerShellCommandExplorer",
96-
"title": "(Preview) PowerShell Command Explorer",
95+
"id": "PowerShell",
96+
"title": "PowerShell",
9797
"icon": "$(terminal-powershell)"
9898
}
9999
]
100100
},
101101
"views": {
102-
"PowerShellCommandExplorer": [
102+
"PowerShell": [
103103
{
104104
"id": "PowerShellCommands",
105-
"name": "PowerShell Commands",
105+
"name": "Command Explorer",
106106
"when": "config.powershell.sideBar.CommandExplorerVisibility"
107107
}
108108
]

src/features/ISECompatibility.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ export class ISECompatibilityFeature implements vscode.Disposable {
5353
}
5454
}
5555

56-
// Show the PowerShell Command Explorer
57-
await vscode.commands.executeCommand("workbench.view.extension.PowerShellCommandExplorer");
56+
// Show the PowerShell view container which has the Command Explorer view
57+
await vscode.commands.executeCommand("workbench.view.extension.PowerShell");
5858

5959
if (!Settings.load().sideBar.CommandExplorerVisibility) {
6060
// Hide the explorer if the setting says so.

0 commit comments

Comments
 (0)