@@ -202,8 +202,10 @@ def html_escape(str):
202
202
def normalize_style (name ):
203
203
if name in ['methodName' ]:
204
204
return 'name'
205
- elif name in ['keyword' , ' interfaceName' ]:
205
+ elif name in ['interfaceName' ]:
206
206
return 'type'
207
+ elif name in ['keyword' ]:
208
+ return 'keyword'
207
209
elif name in ['parameterName' , 'propertyName' ]:
208
210
return 'param'
209
211
return 'text'
@@ -273,13 +275,15 @@ def encode(str, kind):
273
275
"link" : "link" ,
274
276
"fontSize" : PopupManager .font_size ,
275
277
"typeColor" : theme_styles ["type" ]["foreground" ],
278
+ "keywordColor" : theme_styles ["keyword" ]["foreground" ],
276
279
"nameColor" : theme_styles ["name" ]["foreground" ],
277
280
"paramColor" : theme_styles ["param" ]["foreground" ],
278
281
"textColor" : theme_styles ["text" ]["foreground" ]}
279
282
280
283
def get_theme_styles (self ):
281
284
return {
282
285
"type" : self .current_view .style_for_scope ("entity.name.type.class.ts" ),
286
+ "keyword" : self .current_view .style_for_scope ("keyword.control.flow.ts" ),
283
287
"name" : self .current_view .style_for_scope ("entity.name.function" ),
284
288
"param" : self .current_view .style_for_scope ("variable.language.arguments.ts" ),
285
289
"text" : self .current_view .style_for_scope ("source.ts" )
0 commit comments