[Pharo-dev] Completion again ...

2013-09-16 Thread Igor Stasenko
trying to fix completion autopopups when there is nothing to suggest to prevent popping up the empty and useless menu, i stumbled upon this: initializeInstVars (clazz isNil or: [ includeVariables not ]) ifTrue: [ ^ self ]. instVars := clazz allInstVarNames asSortedCollection. instVars

Re: [Pharo-dev] Completion again ...

2013-09-16 Thread Igor Stasenko
https://pharo.fogbugz.com/f/cases/11627/prevent-completion-from-popping-out-with-empty-list On 16 September 2013 17:50, Igor Stasenko wrote: > > > > On 16 September 2013 17:43, Esteban Lorenzano wrote: > >> do not lose your time trying to fix that. >> We are going to change it anyway. >> >> >

Re: [Pharo-dev] Completion again ...

2013-09-16 Thread Igor Stasenko
On 16 September 2013 17:43, Esteban Lorenzano wrote: > do not lose your time trying to fix that. > We are going to change it anyway. > > but i don't want to wait till your changes will come, i want it now, so i will push the slice, and if you don't want it, just don't integrate :) > Esteban >

Re: [Pharo-dev] Completion again ...

2013-09-16 Thread Esteban Lorenzano
do not lose your time trying to fix that. We are going to change it anyway. Esteban On Sep 16, 2013, at 5:39 PM, Igor Stasenko wrote: > trying to fix completion autopopups when there is nothing to suggest > to prevent popping up the empty and useless menu, > i stumbled upon this: > > initial