You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Previously the syntax folding was available for all users. However it was able
to be configured or turned off. This commit adds a new `codeFolding` settings
section, with the syntax folding feature enabled by default.
Copy file name to clipboardExpand all lines: package.json
+5
Original file line number
Diff line number
Diff line change
@@ -467,6 +467,11 @@
467
467
"default": "",
468
468
"description": "Specifies the path to a PowerShell Script Analyzer settings file. To override the default settings for all projects, enter an absolute path, or enter a path relative to your workspace."
469
469
},
470
+
"powershell.codeFolding.enable": {
471
+
"type": "boolean",
472
+
"default": true,
473
+
"description": "Enables syntax based code folding. When disabled, the default indentation based code folding is used."
0 commit comments