From 84af543907e222dd6035a37f7a7b9a99b9fd11ad Mon Sep 17 00:00:00 2001 From: w0rp Date: Sun, 30 Jul 2017 14:42:00 +0100 Subject: Fix some bugs so the PHP language server will show errors at least once --- autoload/ale/lsp.vim | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'autoload') diff --git a/autoload/ale/lsp.vim b/autoload/ale/lsp.vim index 2c9b2990..eb407314 100644 --- a/autoload/ale/lsp.vim +++ b/autoload/ale/lsp.vim @@ -164,6 +164,8 @@ function! s:HandleInitializeResponse(conn, response) abort return endif + let l:project.initialized = 1 + " After the server starts, send messages we had queued previously. for l:message_data in l:project.message_queue call s:SendMessageData(a:conn, l:message_data) @@ -211,7 +213,7 @@ function! s:RegisterProject(conn, project_root) abort " Tools without project roots are ready right away, like tsserver. let a:conn.projects[a:project_root] = { \ 'initialized': empty(a:project_root), - \ 'init_messsage_id': 0, + \ 'init_request_id': 0, \ 'message_queue': [], \} endif @@ -319,7 +321,7 @@ function! ale#lsp#Send(conn_id, message, ...) abort " Only send the init message once. if !l:project.init_request_id let [l:init_id, l:init_data] = ale#lsp#CreateMessageData( - \ ale#lsp#message#Initialize(l:conn.project_root), + \ ale#lsp#message#Initialize(l:project_root), \) let l:project.init_request_id = l:init_id -- cgit v1.2.3