--- Begin Message ---
Yep, Peter, that's an other option.
Thanks
Peter Uhnák wrote
>> {self meth1. self meth2. self meth3}
>
> This is not possible in a reasonably general way. Usually I end up writing
> it like `Array with: self meth1 with: self meth2 with: self meth3`
>
> On Tue, May 8, 2018
> {self meth1. self meth2. self meth3}
This is not possible in a reasonably general way. Usually I end up writing
it like `Array with: self meth1 with: self meth2 with: self meth3`
On Tue, May 8, 2018 at 3:31 PM, Davide Varvello via Pharo-users <
pharo-users@lists.pharo.org> wrote:
>
>
> --
--- Begin Message ---
Thanks Ben, I'm gonna try
Cheers
Davide
Ben Coman wrote
> On 8 May 2018 at 04:22, Davide Varvello via Pharo-users <
> pharo-users@.pharo
>> wrote:
>
>>
>>
>> -- Forwarded message --
>> From: Davide Varvello <
> varvello@
> >
>> To:
> pharo-users@.pharo
On 8 May 2018 at 04:22, Davide Varvello via Pharo-users <
pharo-users@lists.pharo.org> wrote:
>
>
> -- Forwarded message --
> From: Davide Varvello
> To: pharo-users@lists.pharo.org
> Cc:
> Bcc:
> Date: Mon, 7 May 2018 13:22:58 -0700 (MST)
> Subject: How to pretty print a dynamic
--- Begin Message ---
Hi guys,
I have a dynamic array that the formatter put on a column like this:
{self meth1.
self meth2.
self meth3}
instead I want it in a single row, like this:
{self meth1. self meth2. self meth3}
But I can't find any settings to pretty print in the last way.
Can you help m