Add missing function (#667)

Fixes #666
This commit is contained in:
mattn
2020-01-12 04:53:22 +09:00
committed by Prabir Shrestha
parent 70234feca4
commit 2f1ce88a83

View File

@@ -580,3 +580,10 @@ function! s:get_treeitem_for_tree_hierarchy(Callback, object) dict abort
call a:Callback('success', s:hierarchyitem_to_treeitem(a:object))
endfunction
function! lsp#ui#vim#code_action() abort
call lsp#ui#vim#code_action#do({
\ 'sync': v:false,
\ 'selection': v:false,
\ 'query': '',
\ })
endfunction