Merged
Show file tree
Hide file tree
Changes from all commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Failed to load files.
Original file line numberDiff line numberDiff 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
Original file line numberDiff line numberDiff line change
Expand Up@@ -140,7 +140,7 @@ class IntegratedConsoleSettings extends PartialSettings {
}

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

Expand Down