Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Don't make the Command Explorer visible by default #4934

Merged
merged 1 commit into from
Feb 29, 2024
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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -611,7 +611,7 @@
"properties": {
"powershell.sideBar.CommandExplorerVisibility": {
"type": "boolean",
"default": true,
"default": false,
"markdownDescription": "Specifies the visibility of the Command Explorer in the side bar."
},
"powershell.sideBar.CommandExplorerExcludeFilter": {
Expand Down
3 changes: 2 additions & 1 deletion src/features/ISECompatibility.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ export class ISECompatibilityFeature implements vscode.Disposable {
{ path: "workbench", name: "colorTheme", value: "PowerShell ISE" },
{ path: "editor", name: "wordSeparators", value: "`~!@#%^&*()-=+[{]}\\|;:'\",.<>/?" },
{ path: "powershell.buttons", name: "showPanelMovementButtons", value: true },
{ path: "powershell.codeFolding", name: "showLastLine", value: false }
{ path: "powershell.codeFolding", name: "showLastLine", value: false },
{ path: "powershell.sideBar", name: "CommandExplorerVisibility", value: true }
];

private commands: vscode.Disposable[] = [];
Expand Down
2 changes: 1 addition & 1 deletion src/settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ class IntegratedConsoleSettings extends PartialSettings {
}

class SideBarSettings extends PartialSettings {
CommandExplorerVisibility = true;
CommandExplorerVisibility = false;
CommandExplorerExcludeFilter: string[] = [];
}

Expand Down
Loading