From fb0b31ae1dcdc7d68af5c66db4434ae5ebeffcfc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3n=C3=A1n=20Carrigan?= Date: Sat, 15 Jul 2023 20:30:13 +0100 Subject: [PATCH] fix(config): disable quickfix opening by default Quickfix opening causes issues when output is opened on run at the same time due to races within Neovim core. To avoid this, users shouldn't have both quickfix and output open on run by default. See #219 --- doc/neotest.txt | 2 +- lua/neotest/config/init.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/neotest.txt b/doc/neotest.txt index 93da8b1a..19c3f100 100644 --- a/doc/neotest.txt +++ b/doc/neotest.txt @@ -136,7 +136,7 @@ Default values: projects = {}, quickfix = { enabled = true, - open = true + open = false }, run = { enabled = true diff --git a/lua/neotest/config/init.lua b/lua/neotest/config/init.lua index 462e321f..96189289 100644 --- a/lua/neotest/config/init.lua +++ b/lua/neotest/config/init.lua @@ -263,7 +263,7 @@ local default_config = { }, quickfix = { enabled = true, - open = true, + open = false, }, state = { enabled = true,