Skip to content

Commit

Permalink
fix(config): disable quickfix opening by default
Browse files Browse the repository at this point in the history
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
  • Loading branch information
rcarriga committed Jul 15, 2023
1 parent 80366bb commit fb0b31a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doc/neotest.txt
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ Default values:
projects = {},
quickfix = {
enabled = true,
open = true
open = false
},
run = {
enabled = true
Expand Down
2 changes: 1 addition & 1 deletion lua/neotest/config/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ local default_config = {
},
quickfix = {
enabled = true,
open = true,
open = false,
},
state = {
enabled = true,
Expand Down

0 comments on commit fb0b31a

Please sign in to comment.