From 38d0791479f3f83cc0bef51d737f4ce6957f4043 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 14 Mar 2026 13:48:06 +0000 Subject: [PATCH 1/2] fix: add //#region folding markers to language configuration VS Code 1.76+ evaluates folding.markers from the language configuration alongside the LSP folding range provider. Declaring region markers here allows //#region and //#endregion to create collapsible sections in F# files even when Ionide is active. Previously these markers only worked for standalone .fs files, but were ignored when FSAC's FoldingRangeProvider was active. Closes #2125 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- release/language-configuration.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/release/language-configuration.json b/release/language-configuration.json index bf1bbc21..913f8bc4 100644 --- a/release/language-configuration.json +++ b/release/language-configuration.json @@ -45,5 +45,12 @@ ["<@", "@>"], ["<@@", "@@>"], ["{|", "|}"] - ] + ], + + "folding": { + "markers": { + "start": "^\\s*\\/\\/#region\\b", + "end": "^\\s*\\/\\/#endregion\\b" + } + } } From afe5a82607269badb08ede96e2db358406a022ed Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 14 Mar 2026 13:53:56 +0000 Subject: [PATCH 2/2] ci: trigger checks