Skip to content

Commit ea557c5

Browse files
Update asyncomplete for fireplace's async omnicomplete
1 parent e266a1f commit ea557c5

File tree

1 file changed

+4
-32
lines changed

1 file changed

+4
-32
lines changed

autoload/async_clj_omni/sources.vim

+4-32
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,4 @@
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
292
let l:col = a:ctx['col']
303
let l:typed = a:ctx['typed']
314

@@ -34,10 +7,9 @@ function! s:completor(opt, ctx)
347

358
let l:startcol = l:col - l:kwlen
369

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)
4113
endfunction
4214

4315
function! async_clj_omni#sources#complete(opt, ctx)

0 commit comments

Comments
 (0)