Re: [Pharo-users] Code completion in Pharo?

2018-05-26 Thread p...@highoctane.be
Try Cmd-q or Ctrl-q ( and right alt click on Windows). Spotter also has suffixes like #im #cl #sen to be put after a few keystrokes. Spotter: shift-enter (who knows). Phil On Sat, May 26, 2018, 22:16 Tim Mackinnon wrote: > That’s exactly the exploratory attitude we like to

Re: [Pharo-users] Code completion in Pharo?

2018-05-26 Thread Tim Mackinnon
That’s exactly the exploratory attitude we like to see... I think the code completer is pluggable and can be selected in the settings (I think there are 2, and their history is probably in this list somewhere), so you can try your own too. Tim Sent from my iPhone Sent from my iPhone > On

Re: [Pharo-users] Code completion in Pharo?

2018-05-26 Thread Andrzej Olszak
Hi Tim and Nicole, Thanks for great tips. The click+keyModifier actions are extremely useful, and combined with breakpoints make for a great way of 'peeking under the hood' of the existing features. Also, I've just found a perfect piece of real code to do some learning and experimenting on - it

Re: [Pharo-users] Code completion in Pharo?

2018-05-25 Thread Nicole de Graaf
Hi Andrzej, my way of doing it: Searching in the image what other guys are doing. Finder: asMorph and here you can find methods like #openAsMorph .. you can get a clue. or: ‘some text’ asMorph inspect .. than you get the object and you can search the class and from here the class the

Re: [Pharo-users] Code completion in Pharo?

2018-05-25 Thread Tim Mackinnon
Hi - I’m slightly ahead of you on that journey - but what I do is press shift-enter which gives you a great tool called spotter that lets you explore more interactively. In spotter if you also press cmd-p it will also preview method source too - so it’s close to what you are asking (and many

[Pharo-users] Code completion in Pharo?

2018-05-24 Thread andreo
Dear Pharoers, I'm just starting out with Pharo 6.1, and I'm trying to use code completion to interactively explore various objects and their messages. However, I'm having difficulties doing this efficiently - I think I must be missing something obvious, and I hope you can point me in the right