From a8becfe88602909e27b8894bd051896dfe3d6a01 Mon Sep 17 00:00:00 2001 From: Yegappan Lakshmanan Date: Thu, 26 Aug 2021 21:48:31 -0700 Subject: [PATCH] Convert setbufvar() method call to a regular function call. --- autoload/handlers.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/handlers.vim b/autoload/handlers.vim index db0b606..6db5dbd 100644 --- a/autoload/handlers.vim +++ b/autoload/handlers.vim @@ -576,7 +576,7 @@ def s:applyTextEdits(bnr: number, text_edits: list>): void if !bnr->bufloaded() bnr->bufload() endif - bnr->setbufvar('&buflisted', true) + setbufvar(bnr, '&buflisted', true) var start_line: number = 4294967295 # 2 ^ 32 var finish_line: number = -1 -- 2.48.1