-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathused_keywords.jsonc
68 lines (63 loc) · 1.27 KB
/
used_keywords.jsonc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
// This serves no purpose other than to let one
// know which scopes are used so far in specific
// nushell coloring
"FlatShape__InternalCommand": "#55FFFF", //"Cyan.bold"
{
"scope": [
"keyword.control",
"source.cpp keyword.operator.new",
"keyword.operator.delete",
"keyword.other.using",
"keyword.other.operator",
"entity.name.operator"
],
"settings": {
"foreground": "#55FFFF"
}
},
"FlatShape__String": "#00AA00", //"Green"
{
"scope": [
"string",
"meta.embedded.assembly"
],
"settings": {
"foreground": "#00AA00"
}
},
"FlatShape__Variable_or_FlatShape__Identifier": "#AA00AA", //"Purple"
{
"scope": [
"variable",
"meta.definition.variable.name",
"support.variable",
"entity.name.variable"
],
"settings": {
"foreground": "#03af03"
}
},
"FlatShape__Flag": "#5555FF", //"Blue.bold"
"FlatShape__ShorthandFlag": "#5555FF", //"Blue.bold"
{
"scope": [
"variable.parameter.function.nushell"
],
"settings": {
"foreground": "#5555FF",
// "fontStyle": "bold"
}
},
"FlatShape__Int": "#FF55FF", //"Purple.bold"
"FlatShape__Decimal": "#FF55FF", //"Purple.bold"
{
"scope": [
"constant.numeric",
"variable.other.enummember",
"keyword.operator.plus.exponent",
"keyword.operator.minus.exponent"
],
"settings": {
"foreground": "#FF55FF"
}
},