From 84c5ab8a8dd0720cb9f915cd0197772bd200a61f Mon Sep 17 00:00:00 2001 From: sefidel Date: Sat, 17 Aug 2024 22:24:14 +0900 Subject: fix(packs/nvim-lint): fix nvim-cmp behaviour * fixes randomly confirming completion when spamming the key --- fnl/nvrc/packs/lint.fnl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fnl/nvrc/packs/lint.fnl b/fnl/nvrc/packs/lint.fnl index a06255c..9f600b3 100644 --- a/fnl/nvrc/packs/lint.fnl +++ b/fnl/nvrc/packs/lint.fnl @@ -6,7 +6,7 @@ (tset nvim-lint :linters_by_ft {:nix [:nix]}) (ag! nvim-lint - (au! [BufEnter BufWritePost InsertLeave TextChangedI] * (do + (au! [BufEnter BufWritePost InsertLeave] * (do (nvim-lint.try_lint) ; linters that will run on any filetype (nvim-lint.try_lint [:codespell])))) -- cgit 1.4.1