From 465c0acc21c225d4f1e989218836fb0ce1bce996 Mon Sep 17 00:00:00 2001 From: Yegappan Lakshmanan Date: Tue, 26 Jan 2021 08:24:31 -0800 Subject: [PATCH] Fix off-by-one error --- autoload/handlers.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/handlers.vim b/autoload/handlers.vim index d7c0165..ea760da 100644 --- a/autoload/handlers.vim +++ b/autoload/handlers.vim @@ -205,7 +205,7 @@ def s:processCompletionReply(lspserver: dict, req: dict, reply: dict 0 && line[start - 1] =~ '\k' start -= 1 endwhile - start_col = start + start_col = start + 1 endif complete(start_col, completeItems) -- 2.48.1