Use new-ish LSP 'relatedInformation' field for :ALEDetail

This commit is contained in:
Fred Emmott
2018-08-15 14:19:32 -07:00
parent 9cdd8b67b2
commit 484a70f0c0
2 changed files with 39 additions and 0 deletions

View File

@@ -55,6 +55,16 @@ function! ale#lsp#response#ReadDiagnostics(response) abort
endif
endif
if has_key(l:diagnostic, 'relatedInformation')
let l:related = deepcopy(l:diagnostic.relatedInformation)
call map(l:related, {key, val ->
\ ale#path#FromURI(val.location.uri)) .
\ ':' . val.location.range.start.line . ':' . val.location.range.start.character .
\ ': ' . val.message
\ })
let l:loclist_item.detail = join(l:related, "\n") . "\n"
endif
call add(l:loclist, l:loclist_item)
endfor