Skip to content

Commit c558131

Browse files
infinisilpiegamesde
authored andcommitted
Make empty inherit's more consistent and convenient
This might happen if you temporarily remove all inherits, in which case the formatter shouldn't remove the spacing that was there. E.g. I might have this initially inherit a b; inherit c d ; removing all the bindings gives me inherit ; # I already have the space that I'll need inherit # I can just press enter here to add one ; which shouldn't be changed, because it's easier like this to insert new entries again, compared to inherit; This also makes it more consistent with the parent commit's change
1 parent 8d6e77f commit c558131

File tree

5 files changed

+21
-23
lines changed

5 files changed

+21
-23
lines changed

src/Nixfmt/Pretty.hs

+6-11
Original file line numberDiff line numberDiff line change
@@ -127,10 +127,8 @@ instance Pretty Binder where
127127
pretty (Inherit inherit Nothing ids semicolon) =
128128
group $
129129
pretty inherit
130-
<> ( if null ids
131-
then pretty semicolon
132-
else sep <> nest (sepBy sep ids <> nosep <> pretty semicolon)
133-
)
130+
<> sep
131+
<> nest (sepBy sep ids <> nosep <> pretty semicolon)
134132
where
135133
-- Only allow a single line if it's already on a single line and has few enough elements
136134
(sep, nosep) = if sourceLine inherit == sourceLine semicolon && length ids < 4 then (line, line') else (hardline, hardline)
@@ -140,13 +138,10 @@ instance Pretty Binder where
140138
pretty inherit
141139
<> nest
142140
( group' RegularG (line <> pretty source)
143-
<> if null ids
144-
then pretty semicolon
145-
else
146-
sep
147-
<> sepBy sep ids
148-
<> nosep
149-
<> pretty semicolon
141+
<> sep
142+
<> sepBy sep ids
143+
<> nosep
144+
<> pretty semicolon
150145
)
151146
where
152147
-- Only allow a single line if it's already on a single line and has few enough elements

test/diff/inherit/out-pure.nix

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[
22
{
33
# empty inherit o.O
4-
inherit;
4+
inherit ;
55
inherit aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa;
66
}
77
{
@@ -79,7 +79,7 @@
7979
}
8080

8181
{
82-
inherit;
82+
inherit ;
8383
inherit a;
8484
inherit a;
8585
}

test/diff/inherit/out.nix

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[
22
{
33
# empty inherit o.O
4-
inherit;
4+
inherit ;
55
inherit aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa;
66
}
77
{
@@ -83,7 +83,8 @@
8383
}
8484

8585
{
86-
inherit;
86+
inherit
87+
;
8788
inherit
8889
a
8990
;

test/diff/inherit_from/out-pure.nix

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[
22
{
33
# empty inherit o.O
4-
inherit (geany.meta);
4+
inherit (geany.meta) ;
55
inherit (builtins)
66
pathExists
77
readFile
@@ -572,9 +572,9 @@
572572
;
573573
}
574574
{
575-
inherit ({ });
576-
inherit ({ });
577-
inherit ({ });
575+
inherit ({ }) ;
576+
inherit ({ }) ;
577+
inherit ({ }) ;
578578

579579
inherit ({ }) a;
580580
inherit ({ }) a;

test/diff/inherit_from/out.nix

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[
22
{
33
# empty inherit o.O
4-
inherit (geany.meta);
4+
inherit (geany.meta) ;
55
inherit (builtins)
66
pathExists
77
readFile
@@ -572,9 +572,11 @@
572572
;
573573
}
574574
{
575-
inherit ({ });
576-
inherit ({ });
577-
inherit ({ });
575+
inherit ({ }) ;
576+
inherit ({ })
577+
;
578+
inherit ({ })
579+
;
578580

579581
inherit ({ }) a;
580582
inherit ({ })

0 commit comments

Comments
 (0)