File tree Expand file tree Collapse file tree 2 files changed +39
-1
lines changed
Expand file tree Collapse file tree 2 files changed +39
-1
lines changed Original file line number Diff line number Diff line change 1111Extensions location ` ~/.vscode/extensions `
1212
1313How to check [ for colors] ( https://stackoverflow.com/questions/45195023/how-do-i-change-the-color-of-comments-in-vs-code )
14+
15+ ## Check for Colors
16+
17+ Use Developer: Inspect Editor Tokens and Scopes
18+
19+ This is the single most important tool.
20+
21+ - Open the file in VS Code
22+ - Place your cursor on the problematic text (e.g. on localhost or //)
23+
24+ Press:
25+ ```
26+ macOS: Cmd + Shift + P
27+ ```
28+
29+ Run:
30+
31+ Developer: Inspect Editor Tokens and Scopes
Original file line number Diff line number Diff line change 216216 "foreground" : " #42b62b"
217217 }
218218 },
219+ {
220+ "scope" : [
221+ " comment.line.double-slash.shell" ,
222+ " comment.line.double-slash.makefile" ,
223+ " source.makefile" ,
224+ " keyword.control.export.makefile"
225+ ],
226+ "settings" : {
227+ "foreground" : " #c3da64" ,
228+ "fontStyle" : " "
229+ }
230+ },
231+ {
232+ "scope" : [
233+ " variable.parameter.url.css" ,
234+ ],
235+ "settings" : {
236+ "foreground" : " #f0f"
237+ }
238+ },
219239 {
220240 "scope" : [
221241 " comment" ,
419439 "[github-actions-workflow]" : {
420440 "editor.defaultFormatter" : " redhat.vscode-yaml"
421441 },
422- "github.copilot.nextEditSuggestions.enabled" : false
442+ "github.copilot.nextEditSuggestions.enabled" : false ,
423443}
You can’t perform that action at this time.
0 commit comments