We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f02bf20 commit d848083Copy full SHA for d848083
autoload/lsp/ui/vim/output.vim
@@ -237,7 +237,7 @@ function! s:append(data, lines) abort
237
238
return 'markdown'
239
elseif type(a:data) == type({}) && has_key(a:data, 'kind')
240
- call add(a:lines, a:data.value)
+ call extend(a:lines, split(a:data.value, '\n'))
241
242
return a:data.kind ==? 'plaintext' ? 'text' : a:data.kind
243
endif
0 commit comments