neovim: remove redundant -n in test

The -es flag already implies -n (no swapfile).
This commit is contained in:
Gregory Anders 2021-09-01 12:21:43 -06:00
parent 8477406018
commit d37ed0e5ad

View File

@ -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
'';
})