neovim: dont wrap when is null

restore previous behavior
This commit is contained in:
Matthieu Coudron
2020-11-01 18:55:57 +01:00
committed by Matthieu Coudron
parent 4fe0ea478a
commit 295948f40f
+3 -2
View File
@@ -148,8 +148,9 @@ let
in in
wrapNeovimUnstable neovim (res // { wrapNeovimUnstable neovim (res // {
wrapperArgs = lib.escapeShellArgs ( wrapperArgs = lib.escapeShellArgs (
res.wrapperArgs ++ [ "--add-flags" "-u ${writeText "init.vim" res.neovimRcContent}" ]) res.wrapperArgs ++ lib.optionals (configure != {}) [
+ " " + extraMakeWrapperArgs "--add-flags" "-u ${writeText "init.vim" res.neovimRcContent}"
]) + " " + extraMakeWrapperArgs
; ;
}); });
in in