I love folding my code in visual studio code, but I wish I could still see my comment blocks with multiple lines. I use them for my functions and classes. Is there a way to achive this?
For example I have this piece of code:
/**
* setMinimize() - Minimize my window
*/
setMinimize() {
this.win.minimize()
}
Now I use folding and the following happens:
/**...
setMinimize() {...
}
Actually, I'd like to achieve this (so I can still see my comment block):
/**
* setMinimize() - Minimize my window
*/
setMinimize() {...
}
Edit: I forgot to say that I use the option 'fold all', or 'fold level 2'.