From e680016b2d852209f512bc9f5cfb14671d0133e7 Mon Sep 17 00:00:00 2001 From: webbrain-one <295484252+webbrain-one@users.noreply.github.com> Date: Wed, 19 Aug 2026 21:26:47 +0300 Subject: [PATCH] Add code folding for Structurizer DSL Configure language-configuration.json to fold on braces so VS Code can outline code. --- language-configuration.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/language-configuration.json b/language-configuration.json index 27d5ce0..b161fba 100644 --- a/language-configuration.json +++ b/language-configuration.json @@ -19,6 +19,11 @@ ["{", "}"], ["\"", "\""], ], + // rules for auto-indent + "indentationRules": { + "increase": "^\\s*.*\\{\\s*$", + "decrease": "^\\s*\\}" + }, // start and end markers for folding regions "folding": { "markers": {