The list and tupled combinators (and more generall encloseSep) format lists and tuples in a style unnatural to most Haskell programmers (indeed, they contradict the style used in the export list itself!).
For example, a multiline list is currently formatted as:
[1
,2
,3]
whereas
[ 1
, 2
, 3 ]
is more common. Similarly for tuples.
In addition, single-line lists/tuples are formatted as
The
list
andtupled
combinators (and more generallencloseSep
) format lists and tuples in a style unnatural to most Haskell programmers (indeed, they contradict the style used in the export list itself!).For example, a multiline list is currently formatted as:
whereas
is more common. Similarly for tuples.
In addition, single-line lists/tuples are formatted as
whereas
is more common.