Reputation: 2314
How do I fold indented .ts comments in vscode. I could have sworn I used to be able to do this but can't anymore. For example, here the folding is not there when I hover over the Imports comment side.
Upvotes: 0
Views: 472
Reputation: 2314
See the answer here: Code Folding for CSS in VSCode
To enable indented-comment-folding add this to your settings:
"[css]": {
"editor.foldingStrategy": "indentation"
},
css
can be replaced with scss
typescript
javascript
html
...
Upvotes: 1