Skip to content

Commit 598aaef

Browse files
authored
Merge pull request #1 from kbjr/signature-popup-colors
add colors to signature popups
2 parents d68a936 + 1a17409 commit 598aaef

File tree

2 files changed

+26
-2
lines changed

2 files changed

+26
-2
lines changed

signature_popup.html

+13-1
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,20 @@
66
margin: 5px;
77
word-wrap:break-word;
88
}
9+
.name {
10+
color: ${nameColor};
11+
}
12+
.type {
13+
color: ${typeColor};
14+
}
15+
.param {
16+
color: ${paramColor};
17+
}
18+
.text {
19+
color: ${textColor};
20+
}
921
</style>
1022
<div><b>${signature}</b></div>
1123
<div style="margin-left: 15px">${description}</div>
1224
<div>${activeParam}</div>
13-
<div><a href="${link}">${index}</a></div>
25+
<div><a href="${link}">${index}</a></div>

typescript/libs/popup_manager.py

+13-1
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,19 @@ def encode(str, kind):
269269
"index": "{0}/{1}".format(self.signature_index + 1,
270270
len(self.signature_help["items"])),
271271
"link": "link",
272-
"fontSize": PopupManager.font_size}
272+
"fontSize": PopupManager.font_size,
273+
"typeColor": theme_styles["type"]["foreground"],
274+
"nameColor": theme_styles["name"]["foreground"],
275+
"paramColor": theme_styles["param"]["foreground"],
276+
"textColor": theme_styles["text"]["foreground"]}
277+
278+
def get_theme_styles(self):
279+
return {
280+
"type": self.current_view.style_for_scope("entity.name.type.class.ts"),
281+
"name": self.current_view.style_for_scope("entity.name.function"),
282+
"param": self.current_view.style_for_scope("variable.language.arguments.ts"),
283+
"text": self.current_view.style_for_scope("source.ts")
284+
}
273285

274286
_popup_manager = None
275287

0 commit comments

Comments
 (0)