Re: [Pharo-dev] Code Completion in Pharo

2017-03-08 Thread Cyril Ferlicot D.
On 08/03/2017 21:43, stepharong wrote: > This is not related to code completion per se. > I would like to able to navigate based on word instead of characters. > > | is a cursor pressing tab or something else move it to the right > >> and also even if this is not strictly about completion >>

Re: [Pharo-dev] Code Completion in Pharo

2017-03-08 Thread stepharong
This is not related to code completion per se. I would like to able to navigate based on word instead of characters. | is a cursor pressing tab or something else move it to the right and also even if this is not strictly about completion selector: navigation | self at: key ifAbsent:

Re: [Pharo-dev] Code Completion in Pharo

2017-03-04 Thread stepharong
On Sat, 04 Mar 2017 20:07:00 +0100, webwarrior wrote: One thing that is broken in current code completion and needs to be addressed is when you try to edit keyword messages. For example you have: dict at: #foo and you want to add ifAbsent: part. Current implementation

Re: [Pharo-dev] Code Completion in Pharo

2017-03-04 Thread webwarrior
One thing that is broken in current code completion and needs to be addressed is when you try to edit keyword messages. For example you have: dict at: #foo and you want to add ifAbsent: part. Current implementation won't help you, because it works out of context and doesn't recognize the whole

Re: [Pharo-dev] Code Completion in Pharo

2017-02-24 Thread Ben Coman
Another random idea, that you can use something similar to Finder>Examples from within the debugger. That is, a shortcut brings up a small popup dialog kind-of inline with the cursor where you can feed live variables into the pattern matching. cheers -ben On Sat, Feb 25, 2017 at 7:09 AM, Ben

Re: [Pharo-dev] Code Completion in Pharo

2017-02-24 Thread Ben Coman
How would people feel about... when an item is selected from the code completion popup (e.g. with ) that the arguments get expanded as well. These might show up red initially if there is no matching variable and easily show what needs to be edited. cheers -ben On Wed, Feb 15, 2017 at 1:57 AM,

Re: [Pharo-dev] Code Completion in Pharo

2017-02-17 Thread Torsten Bergmann
Beside regular Smalltalk completion I personally would like to see also support for custom templates in the code completion (similar to what Eclipse provides, see https://www.youtube.com/watch?v=zqm4CB1BX6Y).

Re: [Pharo-dev] Code Completion in Pharo

2017-02-17 Thread stepharong
Hi lukas Nice to see you here. I would start to look at the code and clean what is strange. - Did you test the difference between the two algorithms? - Did you play with NECPreferences? - I would like to see what is the difference between the NOC class and the NECclass - I would like to

Re: [Pharo-dev] Code Completion in Pharo

2017-02-16 Thread Guillermo Polito
Hi Lukas, This is cool and an interesting topic. Something that I would like is to see wether we can merge the auto-completion with the AST-based suggestion mechanism (right click on a piece of code -> suggestions), that provides suggestions for refactorings and code browsing. I mean, you can see