I'm using `write` function to generate code very heavily. But small part of the code are hard to read.
So I digged into the options and increased `right-margin` to make it a little better. Here's the changes:
But it turned out the algorithm is doing layout like always appending code in a line, until it reaches right margin.
So if `right-margin` is too big, all the code are in a single line, which is hard to read.
if `right-margin` is too small, then all the code in a column, which is also hard to read.
I think it's not smart enough to make all of my code readable enough, but majority of that is fine.
Is there any solution to improvement the readability at this moment?
Especially for such scenarios:
Thanks.