From 59ad2562ea132c84c5c5fc021d16e473aa98266d Mon Sep 17 00:00:00 2001 From: Silvan Mosberger Date: Tue, 9 Jul 2024 20:21:25 +0200 Subject: [PATCH] No semicolons in with --- src/Nixfmt/Pretty.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Nixfmt/Pretty.hs b/src/Nixfmt/Pretty.hs index bd4fd480..58a618be 100644 --- a/src/Nixfmt/Pretty.hs +++ b/src/Nixfmt/Pretty.hs @@ -419,7 +419,7 @@ prettyWith True (With with expr0 semicolon (Term expr1)) = <> pretty with <> hardspace <> nest (group expr0) - <> pretty semicolon + -- <> pretty semicolon -- Force-expand attrsets <> hardspace <> group' Priority (prettyTermWide expr1)