I know that I can comment with shift + alt + A
or ctrl + /
, but is there any way to comment like this with hotkey:
/* First line of comment
* Second
* Third
*/
I know that I can comment with shift + alt + A
or ctrl + /
, but is there any way to comment like this with hotkey:
/* First line of comment
* Second
* Third
*/
You may try eslint
as the only formatter in your VScode. It'll change your multi line comments to an starred-block comment on save
.
Yet there is no shortcut to remove a starred-block comment in VScode that I know.