Skip to content

Commit f3cb583

Browse files
authored
Merge pull request #2369 from bhcleek/lsp/intialize-msg
lsp: disambiguate lsp initialization progresss
2 parents 0f5961c + c278ca0 commit f3cb583

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

autoload/go/lsp.vim

+2-1
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,7 @@ function! s:newlsp() abort
181181
endfunction
182182

183183
function! l:lsp.handleInitializeResult(result) dict abort
184+
call go#util#EchoProgress("initialized gopls")
184185
let self.ready = 1
185186
" TODO(bc): send initialized message to the server?
186187

@@ -202,7 +203,7 @@ function! s:newlsp() abort
202203
endwhile
203204

204205
if !self.last_request_id
205-
call go#util#EchoProgress("initialize gopls")
206+
call go#util#EchoProgress("initializing gopls")
206207
" TODO(bc): run a server per module and one per GOPATH? (may need to
207208
" keep track of servers by rootUri).
208209
let l:wd = go#util#ModuleRoot()

0 commit comments

Comments
 (0)