From d37ed0e5ada27a5712508b81e4cf0b63759bcaae Mon Sep 17 00:00:00 2001 From: Gregory Anders Date: Wed, 1 Sep 2021 12:21:43 -0600 Subject: [PATCH] neovim: remove redundant -n in test The -es flag already implies -n (no swapfile). --- pkgs/applications/editors/neovim/tests.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/editors/neovim/tests.nix b/pkgs/applications/editors/neovim/tests.nix index ff6ac6e910a6..5f4cda714a67 100644 --- a/pkgs/applications/editors/neovim/tests.nix +++ b/pkgs/applications/editors/neovim/tests.nix @@ -141,6 +141,6 @@ rec { }); nvim_with_lua_packages = runTest nvimWithLuaPackages '' - ${nvimWithLuaPackages}/bin/nvim -n -i NONE --noplugin -es + ${nvimWithLuaPackages}/bin/nvim -i NONE --noplugin -es ''; })