Allow checking for nREPL op
This commit is contained in:
parent
c48adc045b
commit
79c2a718da
@ -207,6 +207,10 @@ function! s:nrepl_message(msg, ...) dict abort
|
|||||||
return call(self.call, [msg, ['done'], sel] + a:000, self)
|
return call(self.call, [msg, ['done'], sel] + a:000, self)
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
|
function! s:nrepl_has_op(op) dict abort
|
||||||
|
return has_key(self.describe.ops, a:op)
|
||||||
|
endfunction
|
||||||
|
|
||||||
let s:nrepl = {
|
let s:nrepl = {
|
||||||
\ 'close': s:function('s:nrepl_close'),
|
\ 'close': s:function('s:nrepl_close'),
|
||||||
\ 'clone': s:function('s:nrepl_clone'),
|
\ 'clone': s:function('s:nrepl_clone'),
|
||||||
@ -214,5 +218,6 @@ let s:nrepl = {
|
|||||||
\ 'call': s:function('s:nrepl_call'),
|
\ 'call': s:function('s:nrepl_call'),
|
||||||
\ 'message': s:function('s:nrepl_message'),
|
\ 'message': s:function('s:nrepl_message'),
|
||||||
\ 'eval': s:function('s:nrepl_eval'),
|
\ 'eval': s:function('s:nrepl_eval'),
|
||||||
|
\ 'has_op': s:function('s:nrepl_has_op'),
|
||||||
\ 'path': s:function('s:nrepl_path'),
|
\ 'path': s:function('s:nrepl_path'),
|
||||||
\ 'process': s:function('s:nrepl_process')}
|
\ 'process': s:function('s:nrepl_process')}
|
||||||
|
@ -539,6 +539,13 @@ function! fireplace#message(payload, ...) abort
|
|||||||
return call(client.message, [payload] + a:000, client)
|
return call(client.message, [payload] + a:000, client)
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
|
function! fireplace#op_available(op) abort
|
||||||
|
let client = fireplace#platform()
|
||||||
|
if has_key(client, 'connection')
|
||||||
|
return client.connection.has_op(a:op)
|
||||||
|
endif
|
||||||
|
endfunction
|
||||||
|
|
||||||
function! fireplace#findresource(resource, ...) abort
|
function! fireplace#findresource(resource, ...) abort
|
||||||
if a:resource ==# ''
|
if a:resource ==# ''
|
||||||
return ''
|
return ''
|
||||||
|
Loading…
Reference in New Issue
Block a user