1
- let s: short_types = {
2
- \ ' function' : ' f' ,
3
- \ ' macro' : ' m' ,
4
- \ ' var' : ' v' ,
5
- \ ' special-form' : ' s' ,
6
- \ ' class' : ' c' ,
7
- \ ' keyword' : ' k' ,
8
- \ ' local' : ' l' ,
9
- \ ' namespace' : ' n' ,
10
- \ ' field' : ' i' ,
11
- \ ' method' : ' f' ,
12
- \ ' static-field' : ' i' ,
13
- \ ' static-method' : ' f' ,
14
- \ ' resource' : ' r'
15
- \ }
16
-
17
- function ! s: candidate (val) abort
18
- let type = get (a: val , ' type' , ' ' )
19
- let arglists = get (a: val , ' arglists' , [])
20
- return {
21
- \ ' word' : get (a: val , ' candidate' ),
22
- \ ' kind' : get (s: short_types , type , type ),
23
- \ ' info' : get (a: val , ' doc' , ' ' ),
24
- \ ' menu' : empty (arglists) ? ' ' : ' (' . join (arglists, ' ' ) . ' )'
25
- \ }
26
- endfunction
27
-
28
- function ! s: completor (opt , ctx)
1
+ function ! s: completor (opt , ctx) abort
29
2
let l: col = a: ctx [' col' ]
30
3
let l: typed = a: ctx [' typed' ]
31
4
@@ -34,10 +7,9 @@ function! s:completor(opt, ctx)
34
7
35
8
let l: startcol = l: col - l: kwlen
36
9
37
- call fireplace#message ({' op' : ' complete' , ' symbol' : l: kw , ' ns' : fireplace#ns (), ' extra-metadata' : [' arglists' , ' doc' ]},
38
- \ { msg - > has_key (msg, ' completions' )
39
- \ &&
40
- \ asyncomplete#complete (a: opt [' name' ], a: ctx , l: startcol , map (msg[' completions' ], { _, val - > s: candidate (val) }), 1 )})
10
+ call fireplace#omnicomplete ({candidates - >
11
+ \ asyncomplete#complete (a: opt [' name' ], a: ctx , l: startcol , candidates, 1 )},
12
+ \ l: kw )
41
13
endfunction
42
14
43
15
function ! async_clj_omni#sources#complete (opt , ctx)
0 commit comments