File tree 1 file changed +9
-3
lines changed
1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change 1
1
// Fixing up autocomplete-plus for us. Just TypeScript files
2
- // See https://github.com/atom-community/autocomplete-plus/issues/214
3
-
4
2
atom- text- editor[data- grammar~= ts]{
5
3
6
4
// Added 'span.' to the selectors to increase specifity
7
-
5
+ // See https://github.com/atom-community/autocomplete-plus/issues/214
8
6
.autocomplete-plus.popover-list ol .list-group li span .label {
9
7
opacity : .7 ;
10
8
}
11
9
.autocomplete-plus.popover-list ol .list-group li span .word {
12
10
color : white ;
13
11
opacity : .8 ;
14
12
}
13
+
14
+ // Move linter behind auto complete
15
+ // See https://github.com/TypeStrong/atom-typescript/issues/54
16
+ // I find that autocomplete shows *before* linter (because the linter is debounced) so autocomplete is openfully the `first` thing you have
17
+ // So just bump the z-index (the default is 4)
18
+ atom- overlay :first-of-type {
19
+ z-index : 5 ;
20
+ }
15
21
}
You can’t perform that action at this time.
0 commit comments