Skip to content

Commit e94f31a

Browse files
author
BirdeeHub
committed
refactor(builder): moved a ) down a line
1 parent 8121239 commit e94f31a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

builder/wrapNeovim.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ let
3636

3737
normSpecs = control: var: maker: lib.flip lib.pipe [
3838
(lib.partition (p: nclib.ncIsAttrs p && p ? value && (
39-
(p.pre or false == true && control == "--suffix") || (p.pre or true == false && control == "--prefix")))
40-
)
39+
(p.pre or false == true && control == "--suffix") || (p.pre or true == false && control == "--prefix"))
40+
))
4141
({ right ? [], wrong ? []}: {
4242
pre = map (p: if nclib.ncIsAttrs p then p.value or p else p) (if control == "--suffix" then right else wrong);
4343
post = map (p: if nclib.ncIsAttrs p then p.value or p else p) (if control == "--prefix" then right else wrong);

0 commit comments

Comments
 (0)