Search
 
SCRIPT & CODE EXAMPLE
 

TYPESCRIPT

vscode change comments color

"editor.tokenColorCustomizations": {
    "comments": "#d4922f"
},
Comment

comment color vscode

in setting.json (ctrl+,) add:

"editor.tokenColorCustomizations": {
    "[Atom One Dark]": {
        "comments": "#d4922f"
    }
},
Comment

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 ?)

*/
Comment

change the comment color in vscode

> "editor.tokenColorCustomizations": {
>     "comments": "#e45e91"   },
Comment

PREVIOUS NEXT
Code Example
Typescript :: adonis make model 
Typescript :: dart wait 5 seconds 
Typescript :: first principle in testing 
Typescript :: target.value typescript 
Typescript :: control structure testing 
Typescript :: google fonts cdn link 
Typescript :: using log how can we find number of digits for a number in java 
Typescript :: condition style in angular 
Typescript :: flutter text button shape 
Typescript :: multi line comments latex 
Typescript :: how to check if file exists lua 
Typescript :: angular remove object from array by id 
Typescript :: typescript string null or white space 
Typescript :: checking if a substring exists in a string r 
Typescript :: how to insert subscript in plots in r 
Typescript :: typescript override interface property 
Typescript :: prevent row click event when button is clicked angular html 
Typescript :: adonis load many 
Typescript :: create react native app typescript 
Typescript :: latex reduce the space after section and subsection 
Typescript :: according to all known laws of aviation 
Typescript :: size of list applescript 
Typescript :: what design consideration usually taken for granted when using Ceramic 
Typescript :: No provider for ChildrenOutletContexts 
Typescript :: add elements to middle of array using splice 
Typescript :: Check if a subarray with 0 sum exists or not 
Typescript :: ionic modal controller pass parameter 
Typescript :: no provider for childrenoutletcontexts angular 
Typescript :: ionic 3 open link external 
Typescript :: React Typescript form event 
ADD CONTENT
Topic
Content
Source link
Name
9+4 =