Callback nREPL API
Pass a callback to call to have it invoked for each response message. This might one day become asynchronous in certain circumstances, but don't count it.
This commit is contained in:
parent
382869c6c7
commit
52758fd4ea
@ -231,9 +231,14 @@ function! s:nrepl_prepare(payload) dict abort
|
||||
return payload
|
||||
endfunction
|
||||
|
||||
function! s:nrepl_call(payload) dict abort
|
||||
function! s:nrepl_call(payload, ...) dict abort
|
||||
let payload = self.prepare(a:payload)
|
||||
return filter(self.dispatch('call', nrepl#fireplace_connection#bencode(payload)), 'v:val.id == payload.id')
|
||||
let response = filter(self.dispatch('call', nrepl#fireplace_connection#bencode(payload)), 'v:val.id == payload.id')
|
||||
if a:0
|
||||
call map(response, 'call(a:1, v:val)')
|
||||
else
|
||||
return response
|
||||
endif
|
||||
endfunction
|
||||
|
||||
let s:nrepl = {
|
||||
|
Loading…
Reference in New Issue
Block a user