Skip to content

Commit

Permalink
Newline character is not removed from the completion info popup menu …
Browse files Browse the repository at this point in the history
…text
  • Loading branch information
yegappan committed Jul 24, 2023
1 parent c96fdfd commit 5c3494c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autoload/lsp/markdown.vim
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ def SplitLine(line: dict<any>, indent: number = 0): list<dict<any>>
return lines
endif
var cur_line: dict<any> = {
text: line.text[: pos],
text: line.text[: pos - 1],
props: []
}
var next_line: dict<any> = {
Expand Down

0 comments on commit 5c3494c

Please sign in to comment.