summaryrefslogtreecommitdiff
path: root/autoload
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2019-02-15 10:42:34 +0000
committerw0rp <devw0rp@gmail.com>2019-02-15 10:44:45 +0000
commit1a69c9c88ccb97655ee75c9fe02dcc81bc228626 (patch)
treed542e134cd03789ef2c0e7cde3e3142d52f9bb48 /autoload
parent0d10653a7c780ac98fd2b980679676f5e8f231e7 (diff)
downloadale-1a69c9c88ccb97655ee75c9fe02dcc81bc228626.zip
#2295 Send an empty object for the initialized notification, per the spec
Diffstat (limited to 'autoload')
-rw-r--r--autoload/ale/lsp/message.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/autoload/ale/lsp/message.vim b/autoload/ale/lsp/message.vim
index cc0b2227..dd07685a 100644
--- a/autoload/ale/lsp/message.vim
+++ b/autoload/ale/lsp/message.vim
@@ -41,7 +41,7 @@ function! ale#lsp#message#Initialize(root_path, initialization_options) abort
endfunction
function! ale#lsp#message#Initialized() abort
- return [1, 'initialized']
+ return [1, 'initialized', {}]
endfunction
function! ale#lsp#message#Shutdown() abort