Answers for "vscode change comments color"

2

vscode change comments color

"editor.tokenColorCustomizations": {
    "comments": "#d4922f"
},
Posted by: Guest on December-14-2020
0

visual studio code different colored comments

VSC coloring Comments:

/*

// crossed out text 
? blue text
* green text
! red text

if you want to use !, * or ? without changeing colors, you have to:
?// no colored text
(you can use * and ! instead of ?)

if you want to use crossed out colored text, use:
//? crossed out colored text
(you can use * and ! instead of ?)

*/
Posted by: Guest on May-23-2021

Code answers related to "TypeScript"

Browse Popular Code Answers by Language