Baptiste Augrain

Results 844 comments of Baptiste Augrain

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 `($`