Skip to content

Commit e1e19cb

Browse files
authored
add support for keyword blocks in signature popup
1 parent a4bcd01 commit e1e19cb

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

typescript/libs/popup_manager.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -202,8 +202,10 @@ def html_escape(str):
202202
def normalize_style(name):
203203
if name in ['methodName']:
204204
return 'name'
205-
elif name in ['keyword', 'interfaceName']:
205+
elif name in ['interfaceName']:
206206
return 'type'
207+
elif name in ['keyword']:
208+
return 'keyword'
207209
elif name in ['parameterName', 'propertyName']:
208210
return 'param'
209211
return 'text'
@@ -273,13 +275,15 @@ def encode(str, kind):
273275
"link": "link",
274276
"fontSize": PopupManager.font_size,
275277
"typeColor": theme_styles["type"]["foreground"],
278+
"keywordColor": theme_styles["keyword"]["foreground"],
276279
"nameColor": theme_styles["name"]["foreground"],
277280
"paramColor": theme_styles["param"]["foreground"],
278281
"textColor": theme_styles["text"]["foreground"]}
279282

280283
def get_theme_styles(self):
281284
return {
282285
"type": self.current_view.style_for_scope("entity.name.type.class.ts"),
286+
"keyword": self.current_view.style_for_scope("keyword.control.flow.ts"),
283287
"name": self.current_view.style_for_scope("entity.name.function"),
284288
"param": self.current_view.style_for_scope("variable.language.arguments.ts"),
285289
"text": self.current_view.style_for_scope("source.ts")

0 commit comments

Comments
 (0)