alejandra icon indicating copy to clipboard operation
alejandra copied to clipboard

simple string assignment split across lines not maintained

Open sellout opened this issue 2 years ago • 0 comments

-    xdgUserDirsProjects =
-      "${config.home.homeDirectory}/${config.lib.local.xdgUserDirsProjectsRel}";
+    xdgUserDirsProjects = "${config.home.homeDirectory}/${config.lib.local.xdgUserDirsProjectsRel}";

The formatted line is too long, but without a more complicated expression, I can’t break it. Alejandra is happy to leave this version alone:

    xdgUserDirsProjects =
      config.home.homeDirectory + "/" + config.lib.local.xdgUserDirsProjectsRel;

sellout avatar Dec 16 '22 19:12 sellout