We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8121239 commit e94f31aCopy full SHA for e94f31a
builder/wrapNeovim.nix
@@ -36,8 +36,8 @@ let
36
37
normSpecs = control: var: maker: lib.flip lib.pipe [
38
(lib.partition (p: nclib.ncIsAttrs p && p ? value && (
39
- (p.pre or false == true && control == "--suffix") || (p.pre or true == false && control == "--prefix")))
40
- )
+ (p.pre or false == true && control == "--suffix") || (p.pre or true == false && control == "--prefix"))
+ ))
41
({ right ? [], wrong ? []}: {
42
pre = map (p: if nclib.ncIsAttrs p then p.value or p else p) (if control == "--suffix" then right else wrong);
43
post = map (p: if nclib.ncIsAttrs p then p.value or p else p) (if control == "--prefix" then right else wrong);
0 commit comments