From ece60757f9fbea873952d61e8705e9dee1373ea1 Mon Sep 17 00:00:00 2001 From: Samir Benmendil Date: Sun, 7 Dec 2025 20:47:41 +0000 Subject: [PATCH] nvim: don't use trouble for neotest --- nvim/lua/plugins/test.lua | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/nvim/lua/plugins/test.lua b/nvim/lua/plugins/test.lua index 9ed3fc4..68ad914 100644 --- a/nvim/lua/plugins/test.lua +++ b/nvim/lua/plugins/test.lua @@ -5,13 +5,7 @@ return { adapters = {}, status = { virtual_text = true }, output = { open_on_run = true }, - quickfix = { - open = function() - -- TODO: review if I'd prefer to just use quickfix here - -- vim.cmd("copen") - require("trouble").open({ mode = "quickfix", focus = false }) - end, - }, + quickfix = { enabled = true }, }, config = function(_, opts) local neotest_ns = vim.api.nvim_create_namespace("neotest") -- 2.51.2