Hi, It could be cool yep, I will do it. So we say 3 characters as limit ? Franck
Date: Sat, 19 Sep 2015 02:16:34 +0200 From: i.uhnak@gmail.com To: pharo-dev@lists.pharo.org 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