#1428 Start implementing LSP hover support

This commit is contained in:
w0rp
2018-04-22 22:00:25 +01:00
parent 0b3ee11546
commit ef130c4428
6 changed files with 260 additions and 0 deletions

View File

@@ -11,6 +11,11 @@ function! ale#util#FeedKeys(...) abort
return call('feedkeys', a:000)
endfunction
" A wrapper function for echo so we can test calls for it.
function! ale#util#Echo(string) abort
execute 'echo a:string'
endfunction
" A wrapper function for execute, so we can test executing some commands.
function! ale#util#Execute(expr) abort
execute a:expr