Fix #1859 - Make the connection ID available on the connection object

This commit is contained in:
w0rp 2018-08-28 10:18:37 +01:00
parent b6112aedc3
commit 339930ad68
No known key found for this signature in database
GPG Key ID: 0FC1ECAA8C81CD83

View File

@ -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,