Re: Issue 1426 in pharo: Auto completion does not complete symbols

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

Re: Issue 1426 in pharo: Auto completion does not complete symbols

pharo

Comment #7 on issue 1426 by [hidden email]: Auto completion does not  
complete symbols
http://code.google.com/p/pharo/issues/detail?id=1426


I believe this is not a problem:

#od is taken as a literal symbol, similar to #ev, and have no  
auto-completion.

##od gives the suggestion for odd as ## is evaluated to literal symbol #  
and od is used for auto-completion; ##ev gives several suggestions.




Reply | Threaded
Open this post in threaded view
|

Re: Issue 1426 in pharo: Auto completion does not complete symbols

pharo

Comment #8 on issue 1426 by [hidden email]: Auto completion does not  
complete symbols
http://code.google.com/p/pharo/issues/detail?id=1426

I can confirm this behaviour in dev 1.2rc1 12311, yet some clarification is  
needed for proper functioning:

#od is taken as a literal symbol, similar to #ev, and have no  
auto-completion.

##od gives the suggestion for odd because ## is evaluated first to literal  
symbol and od is then used for auto-completion.

'od' with cursor before closing ' gives auto-completion
[od] does not; nor does (od)

Since I'm new, which should produce the auto-completion and which shouldn't?