From b8455ab0a52468dc4bec9ebc2189590f8753aa41 Mon Sep 17 00:00:00 2001 From: Heyward Fann Date: Wed, 22 May 2024 15:38:16 +0800 Subject: [PATCH] fix(model): fetchContent without debounce time (#5019) Closes #5017 --- src/model/document.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/model/document.ts b/src/model/document.ts index 3f7aba478ad..951e900aa00 100644 --- a/src/model/document.ts +++ b/src/model/document.ts @@ -644,7 +644,7 @@ export default class Document { || !this._noFetch) { fireLinesChanged(this.bufnr) this._noFetch = false - this.fetchContent() + void this._fetchContent() return } let { line, changedtick, lnum } = change