Skip to content

Commit

Permalink
nixos/neovim: fix remote plugin manifest generation (#191852)
Browse files Browse the repository at this point in the history
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: neovim/neovim@64d147b
  • Loading branch information
liketechnik committed Sep 21, 2022
1 parent 25bb19c commit 86c51f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/applications/editors/neovim/wrapper.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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!"
Expand Down

0 comments on commit 86c51f6

Please sign in to comment.