Skip to content

Commit 7ece044

Browse files
authored
update styling in signature popup to use bold/italic styles
1 parent 5d359c5 commit 7ece044

File tree

1 file changed

+26
-14
lines changed

1 file changed

+26
-14
lines changed

typescript/libs/popup_manager.py

+26-14
Original file line numberDiff line numberDiff line change
@@ -202,10 +202,8 @@ def html_escape(str):
202202
def normalize_style(name):
203203
if name in ['methodName']:
204204
return 'name'
205-
elif name in ['interfaceName']:
205+
elif name in ['keyword', 'interfaceName']:
206206
return 'type'
207-
elif name in ['keyword']:
208-
return 'keyword'
209207
elif name in ['parameterName', 'propertyName']:
210208
return 'param'
211209
return 'text'
@@ -264,7 +262,7 @@ def encode(str, kind):
264262
if param["documentation"] else "")
265263
else:
266264
activeParam = ''
267-
265+
268266
theme_styles = self.get_theme_styles()
269267

270268
return {"signature": signature,
@@ -274,19 +272,33 @@ def encode(str, kind):
274272
len(self.signature_help["items"])),
275273
"link": "link",
276274
"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
282294

283295
def get_theme_styles(self):
284296
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"))
290302
}
291303

292304
_popup_manager = None

0 commit comments

Comments
 (0)