Skip to content

Commit 4c15957

Browse files
wip
Signed-off-by: ivan katliarchuk <[email protected]>
1 parent 9a27475 commit 4c15957

File tree

2 files changed

+39
-1
lines changed

2 files changed

+39
-1
lines changed

tools/vscode/REAMDE.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,21 @@
1111
Extensions location `~/.vscode/extensions`
1212

1313
How 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

tools/vscode/settings.json

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,26 @@
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",
@@ -419,5 +439,5 @@
419439
"[github-actions-workflow]": {
420440
"editor.defaultFormatter": "redhat.vscode-yaml"
421441
},
422-
"github.copilot.nextEditSuggestions.enabled": false
442+
"github.copilot.nextEditSuggestions.enabled": false,
423443
}

0 commit comments

Comments
 (0)