Difference between 'do-it' (ctrl d) and 'do-it and go' (ctrl -g)?

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

Difference between 'do-it' (ctrl d) and 'do-it and go' (ctrl -g)?

Hannes Hirzel
Hello

In Pharo 6.1 what is the difference between the

    'do-it' (ctrl d) and

     'do-it and go

menu entry in the playground (see screen shot)?

Regards
Hannes

Pharo6.1_playground_menu_2017-09-04.png (28K) Download Attachment
Reply | Threaded
Open this post in threaded view
|

Re: Difference between 'do-it' (ctrl d) and 'do-it and go' (ctrl -g)?

CyrilFerlicot

On lun. 4 sept. 2017 at 09:59, H. Hirzel <[hidden email]> wrote:
Hello

In Pharo 6.1 what is the difference between the

    'do-it' (ctrl d) and

     'do-it and go

menu entry in the playground (see screen shot)?

Regards
Hannes
Hi,

Do it and go will open an inspector *in* the playground with the result of the execution. 
--
Cyril Ferlicot
https://ferlicot.fr

http://www.synectique.eu
2 rue Jacques Prévert 01,
59650 Villeneuve d'ascq France
Reply | Threaded
Open this post in threaded view
|

Re: Difference between 'do-it' (ctrl d) and 'do-it and go' (ctrl -g)?

alistairgrant
In reply to this post by Hannes Hirzel
On 4 September 2017 at 09:58, H. Hirzel <[hidden email]> wrote:

> Hello
>
> In Pharo 6.1 what is the difference between the
>
>     'do-it' (ctrl d) and
>
>      'do-it and go
>
> menu entry in the playground (see screen shot)?
>
> Regards
> Hannes

Ctrl-d will execute the selected expression, but not show the resulting object.

Ctrl-g will execute the selected expression and open a new tab
inspecting the resulting object.

Cheers,
Alistair