From 86c51f68bccbdd89a16a179c661e02ec7d2b544e Mon Sep 17 00:00:00 2001 From: Florian Warzecha Date: Wed, 21 Sep 2022 23:56:19 +0200 Subject: [PATCH] nixos/neovim: fix remote plugin manifest generation (#191852) Stops using ex mode when running neovim for remote plugin manifest generation, since that leads to errors in more recent neovim versions with various plugins. neovim commit that breaks this plugin generation: https://github.com/neovim/neovim/commit/64d147b --- pkgs/applications/editors/neovim/wrapper.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/editors/neovim/wrapper.nix b/pkgs/applications/editors/neovim/wrapper.nix index d0df6b7356ed..4f204fd7dbcc 100644 --- a/pkgs/applications/editors/neovim/wrapper.nix +++ b/pkgs/applications/editors/neovim/wrapper.nix @@ -100,7 +100,7 @@ let if ! $out/bin/nvim-wrapper \ -u ${writeText "manifest.vim" manifestRc} \ -i NONE -n \ - -E -V1rplugins.log -s \ + -V1rplugins.log \ +UpdateRemotePlugins +quit! > outfile 2>&1; then cat outfile echo -e "\nGenerating rplugin.vim failed!"