From c4caa5f75bf13593dabea0464ba52c10b7829a8b Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Fri, 24 Oct 2025 16:00:56 +0200 Subject: [PATCH] tests/plugins/compiler: disable runNvim (unconditional warning) https://github.com/stevearc/overseer.nvim/pull/448 --- tests/test-sources/plugins/by-name/compiler/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/test-sources/plugins/by-name/compiler/default.nix b/tests/test-sources/plugins/by-name/compiler/default.nix index 8f443893..0f6f94b8 100644 --- a/tests/test-sources/plugins/by-name/compiler/default.nix +++ b/tests/test-sources/plugins/by-name/compiler/default.nix @@ -1,5 +1,10 @@ { empty = { + # TODO: shows a warning + # > ERROR: ATTN: overseer.nvim will experience breaking changes soon. Pin to version v1.6.0 or earlier to avoid disruption. + # > See: https://github.com/stevearc/overseer.nvim/pull/448 + test.runNvim = false; + plugins.compiler.enable = true; }; }