Skip to content

Commit af06ea4

Browse files
authored
Merge pull request techwithtim#4 from DRincs-Productions/3-new-settings-vscode-language-renpy-v211
settings
2 parents aa27435 + 42ff1fc commit af06ea4

1 file changed

Lines changed: 175 additions & 0 deletions

File tree

.vscode/settings.json

Lines changed: 175 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,179 @@
66
"files.exclude": {
77
"**/*.rpyc": true
88
},
9+
"editor.tokenColorCustomizations": {
10+
"textMateRules": [
11+
{
12+
"scope": "renpy.meta.plain",
13+
"settings": {
14+
"fontStyle": ""
15+
}
16+
},
17+
{
18+
"scope": "renpy.meta.i",
19+
"settings": {
20+
"fontStyle": "italic"
21+
}
22+
},
23+
{
24+
"scope": "renpy.meta.b",
25+
"settings": {
26+
"fontStyle": "bold"
27+
}
28+
},
29+
{
30+
"scope": [
31+
"renpy.meta.u",
32+
"renpy.meta.a"
33+
],
34+
"settings": {
35+
"fontStyle": "underline"
36+
}
37+
},
38+
{
39+
"scope": "renpy.meta.s",
40+
"settings": {
41+
"fontStyle": "strikethrough"
42+
}
43+
},
44+
{
45+
"scope": "renpy.meta.i renpy.meta.b",
46+
"settings": {
47+
"fontStyle": "italic bold"
48+
}
49+
},
50+
{
51+
"scope": "renpy.meta.i renpy.meta.u",
52+
"settings": {
53+
"fontStyle": "italic underline"
54+
}
55+
},
56+
{
57+
"scope": "renpy.meta.i renpy.meta.s",
58+
"settings": {
59+
"fontStyle": "italic strikethrough"
60+
}
61+
},
62+
{
63+
"scope": "renpy.meta.b renpy.meta.u",
64+
"settings": {
65+
"fontStyle": "bold underline"
66+
}
67+
},
68+
{
69+
"scope": "renpy.meta.b renpy.meta.s",
70+
"settings": {
71+
"fontStyle": "bold strikethrough"
72+
}
73+
},
74+
{
75+
"scope": "renpy.meta.u renpy.meta.s",
76+
"settings": {
77+
"fontStyle": "underline strikethrough"
78+
}
79+
},
80+
{
81+
"scope": "renpy.meta.i renpy.meta.b renpy.meta.u",
82+
"settings": {
83+
"fontStyle": "italic bold underline"
84+
}
85+
},
86+
{
87+
"scope": "renpy.meta.i renpy.meta.b renpy.meta.s",
88+
"settings": {
89+
"fontStyle": "italic bold strikethrough"
90+
}
91+
},
92+
{
93+
"scope": "renpy.meta.i renpy.meta.u renpy.meta.s",
94+
"settings": {
95+
"fontStyle": "italic underline strikethrough"
96+
}
97+
},
98+
{
99+
"scope": "renpy.meta.b renpy.meta.u renpy.meta.s",
100+
"settings": {
101+
"fontStyle": "bold underline strikethrough"
102+
}
103+
},
104+
{
105+
"scope": "renpy.meta.i renpy.meta.b renpy.meta.u renpy.meta.s",
106+
"settings": {
107+
"fontStyle": "italic bold underline strikethrough"
108+
}
109+
},
110+
{
111+
"scope": "renpy.meta.color.text",
112+
"settings": {
113+
"foreground": "#ffffff"
114+
}
115+
},
116+
{
117+
"scope": "renpy.meta.color.#570058",
118+
"settings": {
119+
"foreground": "#570058"
120+
}
121+
},
122+
{
123+
"scope": "renpy.meta.color.#570058",
124+
"settings": {
125+
"foreground": "#570058"
126+
}
127+
},
128+
{
129+
"scope": "renpy.meta.color.#cc5dcd",
130+
"settings": {
131+
"foreground": "#cc5dcd"
132+
}
133+
},
134+
{
135+
"scope": "renpy.meta.color.#570058",
136+
"settings": {
137+
"foreground": "#570058"
138+
}
139+
},
140+
{
141+
"scope": "renpy.meta.color.#570058",
142+
"settings": {
143+
"foreground": "#570058"
144+
}
145+
},
146+
{
147+
"scope": "renpy.meta.color.#cc5dcd",
148+
"settings": {
149+
"foreground": "#cc5dcd"
150+
}
151+
},
152+
{
153+
"scope": "renpy.meta.color.#ff0000",
154+
"settings": {
155+
"foreground": "#ff0000"
156+
}
157+
},
158+
{
159+
"scope": "renpy.meta.color.#cfc",
160+
"settings": {
161+
"foreground": "#cfc"
162+
}
163+
},
164+
{
165+
"scope": "renpy.meta.color.#fcc",
166+
"settings": {
167+
"foreground": "#fcc"
168+
}
169+
},
170+
{
171+
"scope": "renpy.meta.color.#fff",
172+
"settings": {
173+
"foreground": "#fff"
174+
}
175+
},
176+
{
177+
"scope": "renpy.meta.color.#f00",
178+
"settings": {
179+
"foreground": "#f00"
180+
}
181+
}
182+
]
183+
}
9184
}

0 commit comments

Comments
 (0)