From d69472c7dbe5172dffa2b7ef6c5ce5a313ca9480 Mon Sep 17 00:00:00 2001 From: Frode Flaten <3436158+fflaten@users.noreply.github.com> Date: Sat, 18 Feb 2023 13:19:59 +0000 Subject: [PATCH] Hide last line in folded regions using ISE mode --- src/features/ISECompatibility.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/features/ISECompatibility.ts b/src/features/ISECompatibility.ts index e741ed0b0f..a2a259023c 100644 --- a/src/features/ISECompatibility.ts +++ b/src/features/ISECompatibility.ts @@ -23,7 +23,8 @@ export class ISECompatibilityFeature implements vscode.Disposable { { path: "files", name: "defaultLanguage", value: "powershell" }, { path: "workbench", name: "colorTheme", value: "PowerShell ISE" }, { path: "editor", name: "wordSeparators", value: "`~!@#%^&*()-=+[{]}\\|;:'\",.<>/?" }, - { path: "powershell.buttons", name: "showPanelMovementButtons", value: true } + { path: "powershell.buttons", name: "showPanelMovementButtons", value: true }, + { path: "powershell.codeFolding", name: "showLastLine", value: false } ]; private _commandRegistrations: vscode.Disposable[] = [];