mirror of
https://github.com/prabirshrestha/vim-lsp.git
synced 2025-12-14 20:35:59 +01:00
Add window/workDoneProgress/create response (#973)
This commit is contained in:
@@ -811,6 +811,8 @@ function! s:on_request(server_name, id, request) abort
|
||||
elseif a:request['method'] ==# 'workspace/configuration'
|
||||
let l:response_items = map(a:request['params']['items'], { key, val -> lsp#utils#workspace_config#get_value(a:server_name, val) })
|
||||
call s:send_response(a:server_name, { 'id': a:request['id'], 'result': l:response_items })
|
||||
elseif a:request['method'] ==# 'window/workDoneProgress/create'
|
||||
call s:send_response(a:server_name, { 'id': a:request['id'], 'result': v:null})
|
||||
else
|
||||
" TODO: for now comment this out until we figure out a better solution.
|
||||
" We need to comment this out so that others outside of vim-lsp can
|
||||
|
||||
Reference in New Issue
Block a user