> From:
[hidden email]> To:
[hidden email]> Subject: [Pharo-dev] Modyfing BlueInk formatter
>
> Hi,
>
> how hard it would be to modify BlueInk formatter to inline dynamic
> array in some situations?
>
> Currently BL places each element of dynamic array at separate line
>
> ~~~~~~~~~~
> v addAll:
> {l1.
> l2.
> l3}
> ~~~~~~~~~~
>
> and what I want is to inline them if the length of the element names
> is small (1-3 characters maybe)...
>
> ~~~~~~~~~
> v addAll: { l1 . l2 . l3 }
> ~~~~~~~~~
>
> For longer names I want to keep the current behavior.
>
> Obviously this would have to be configurable, however as I have no
> knowledge of BL internals I don't even know where to start...
>
> Any pointers appreciated,
> Peter
>