Skip to content

Commit 65628c3

Browse files
fix inlay hint list separator (#1438)
fix #1430 It lead wrong format.
1 parent 2533762 commit 65628c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

autoload/lsp/internal/inlay_hints.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ function! s:set_inlay_hints(data) abort
2222
endif
2323
let l:label = ''
2424
if type(l:hint.label) ==# v:t_list
25-
let l:label = join(map(copy(l:hint.label), {_,v -> v.value}), ', ')
25+
let l:label = join(map(copy(l:hint.label), {_,v -> v.value}), '')
2626
else
2727
let l:label = l:hint.label
2828
endif

0 commit comments

Comments
 (0)