@@ -202,10 +202,8 @@ def html_escape(str):
202
202
def normalize_style (name ):
203
203
if name in ['methodName' ]:
204
204
return 'name'
205
- elif name in ['interfaceName' ]:
205
+ elif name in ['keyword' , ' interfaceName' ]:
206
206
return 'type'
207
- elif name in ['keyword' ]:
208
- return 'keyword'
209
207
elif name in ['parameterName' , 'propertyName' ]:
210
208
return 'param'
211
209
return 'text'
@@ -264,7 +262,7 @@ def encode(str, kind):
264
262
if param ["documentation" ] else "" )
265
263
else :
266
264
activeParam = ''
267
-
265
+
268
266
theme_styles = self .get_theme_styles ()
269
267
270
268
return {"signature" : signature ,
@@ -274,19 +272,33 @@ def encode(str, kind):
274
272
len (self .signature_help ["items" ])),
275
273
"link" : "link" ,
276
274
"fontSize" : PopupManager .font_size ,
277
- "typeColor" : theme_styles ["type" ]["foreground" ],
278
- "keywordColor" : theme_styles ["keyword" ]["foreground" ],
279
- "nameColor" : theme_styles ["name" ]["foreground" ],
280
- "paramColor" : theme_styles ["param" ]["foreground" ],
281
- "textColor" : theme_styles ["text" ]["foreground" ]}
275
+ "typeStyles" : theme_styles ["type" ],
276
+ "keywordStyles" : theme_styles ["keyword" ],
277
+ "nameStyles" : theme_styles ["name" ],
278
+ "paramStyles" : theme_styles ["param" ],
279
+ "textStyles" : theme_styles ["text" ]}
280
+
281
+ def format_css (self , style ):
282
+ result = ""
283
+
284
+ if (style ["foreground" ]):
285
+ result += "color: {0};" .format (style ["foreground" ])
286
+
287
+ if (style ["bold" ]):
288
+ result += "font-weight: bold;"
289
+
290
+ if (style ["italic" ]):
291
+ result += "font-style: italic;"
292
+
293
+ return result
282
294
283
295
def get_theme_styles (self ):
284
296
return {
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" ),
287
- "name" : self .current_view .style_for_scope ("entity.name.function" ),
288
- "param" : self .current_view .style_for_scope ("variable.language.arguments.ts" ),
289
- "text" : self .current_view .style_for_scope ("source.ts" )
297
+ "type" : self .format_css ( self . current_view .style_for_scope ("entity.name.type.class.ts" ) ),
298
+ "keyword" : self .format_css ( self . current_view .style_for_scope ("keyword.control.flow.ts" ) ),
299
+ "name" : self .format_css ( self . current_view .style_for_scope ("entity.name.function" ) ),
300
+ "param" : self .format_css ( self . current_view .style_for_scope ("variable.language.arguments.ts" ) ),
301
+ "text" : self .format_css ( self . current_view .style_for_scope ("source.ts" ) )
290
302
}
291
303
292
304
_popup_manager = None
0 commit comments