diff options
author | w0rp <devw0rp@gmail.com> | 2019-02-15 08:32:01 +0000 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2019-02-15 08:32:01 +0000 |
commit | 89039187da89467d059cc13135e1b6cd867a68e9 (patch) | |
tree | 5eb241a3a3b0715e9927b7150ebcf00cc78c8b85 | |
parent | 7487ecb957b0e8770b2939a0ab95f83baa28e614 (diff) | |
download | ale-89039187da89467d059cc13135e1b6cd867a68e9.zip |
Fix #2294 - Fix some syntax that broke LSP
-rw-r--r-- | autoload/ale/lsp.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autoload/ale/lsp.vim b/autoload/ale/lsp.vim index d1b3710e..9dab9b8c 100644 --- a/autoload/ale/lsp.vim +++ b/autoload/ale/lsp.vim @@ -259,7 +259,7 @@ function! ale#lsp#HandleInitResponse(conn, response) abort let a:conn.message_queue = [] " Call capabilities callbacks queued for the project. - for [l:Callback] in a:conn.init_queue + for l:Callback in a:conn.init_queue call l:Callback() endfor |