From 339930ad68a16e8298b8b84ef0ab428bf7061c5f Mon Sep 17 00:00:00 2001 From: w0rp Date: Tue, 28 Aug 2018 10:18:37 +0100 Subject: [PATCH] Fix #1859 - Make the connection ID available on the connection object --- autoload/ale/lsp.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/autoload/ale/lsp.vim b/autoload/ale/lsp.vim index 7f99422a..dae45e70 100644 --- a/autoload/ale/lsp.vim +++ b/autoload/ale/lsp.vim @@ -24,6 +24,7 @@ function! ale#lsp#Register(executable_or_address, project, init_options) abort " capabilities_queue: The list of callbacks to call with capabilities. " capabilities: Features the server supports. let s:connections[l:conn_id] = { + \ 'id': l:conn_id, \ 'is_tsserver': 0, \ 'data': '', \ 'root': a:project,