質問編集履歴
1
修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -8,10 +8,28 @@
|
|
8
8
|
|
9
9
|
settings.jsonでコメントの色は変えられたのですが、
|
10
10
|
|
11
|
-
|
11
|
+
以下のやり方だと演算子だけを変える設定は無い感じでした。
|
12
12
|
|
13
13
|
"editor.tokenColorCustomizations": {
|
14
14
|
|
15
15
|
"comments": "#808080",
|
16
16
|
|
17
17
|
},
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
設定できるやつ↓
|
22
|
+
|
23
|
+
comments: 'comment',
|
24
|
+
|
25
|
+
strings: 'string',
|
26
|
+
|
27
|
+
keywords: 'keyword',
|
28
|
+
|
29
|
+
numbers: 'constant.numeric',
|
30
|
+
|
31
|
+
types: 'entity.name.type',
|
32
|
+
|
33
|
+
functions: 'entity.name.function',
|
34
|
+
|
35
|
+
variables: 'variable'
|