Paul Kruger
Paul Kruger

Reputation: 2314

VSCode Fold Ts Comments

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.

enter image description here

Upvotes: 0

Views: 472

Answers (1)

Paul Kruger
Paul Kruger

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

Related Questions