Baptiste Augrain
Baptiste Augrain
Which installer has been used?
By default, on `1.97.x`, there is no copilot settings.
try ``` "[typescript]": { "explicitFolding.rules": [ { "beginRegex": "^.*\\($", "middleRegex": "^\\) => \\{$", "endRegex": "^\\}$", "nested": false, }, { "beginRegex": "^.*=> \\{$", "endRegex": "^\\}$", // "nested": false, }, ] },...
To improve the regex performance, maybe replace `^.*\\($` with `^const .*\\($` so it don't test each line until it find a `($`