From 10237ec0931e84dee6fc17a15c2a16c868e46b24 Mon Sep 17 00:00:00 2001 From: Sanchayan Maity Date: Tue, 27 Apr 2021 19:13:44 +0530 Subject: [PATCH] nvim: lua: plugins: Drop nvim-bqf and add back QFEnter With nvim-bqf when opening the quickfix list, it jumps around the opened buffers. For example, when calling LSP reference on a variable in buffer one, it jumps to buffer three after the quickfix list opens. This is annoying, so dump it. The preview feature has not been that helpful anyways. --- nvim/.config/nvim/lua/plugins.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvim/.config/nvim/lua/plugins.lua b/nvim/.config/nvim/lua/plugins.lua index d961152..e45a27e 100644 --- a/nvim/.config/nvim/lua/plugins.lua +++ b/nvim/.config/nvim/lua/plugins.lua @@ -63,7 +63,7 @@ local init = function () config = "require('modules.asyncdo')" } -- Quickfix - use 'kevinhwang91/nvim-bqf' + use 'yssl/QFEnter' use 'ronakg/quickr-cscope.vim' use { 'milkypostman/vim-togglelist',