File tree 2 files changed +26
-2
lines changed
2 files changed +26
-2
lines changed Original file line number Diff line number Diff line change 6
6
margin : 5px ;
7
7
word-wrap : break-word;
8
8
}
9
+ .name {
10
+ color : ${nameColor};
11
+ }
12
+ .type {
13
+ color : ${typeColor};
14
+ }
15
+ .param {
16
+ color : ${paramColor};
17
+ }
18
+ .text {
19
+ color : ${textColor};
20
+ }
9
21
</ style >
10
22
< div > < b > ${signature}</ b > </ div >
11
23
< div style ="margin-left: 15px "> ${description}</ div >
12
24
< div > ${activeParam}</ div >
13
- < div > < a href ="${link} "> ${index}</ a > </ div >
25
+ < div > < a href ="${link} "> ${index}</ a > </ div >
Original file line number Diff line number Diff line change @@ -269,7 +269,19 @@ def encode(str, kind):
269
269
"index" : "{0}/{1}" .format (self .signature_index + 1 ,
270
270
len (self .signature_help ["items" ])),
271
271
"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
+ }
273
285
274
286
_popup_manager = None
275
287
You can’t perform that action at this time.
0 commit comments