myroslavarm / Experimental-Completion

My internship project: improving code completion for Pharo
6 stars 3 forks source link

Pharo8/New Model: suggest simplest methods first #52

Open myroslavarm opened 5 years ago

myroslavarm commented 5 years ago

for example when typing in 'init' the suggestions that appear don't include 'initialize' whereas it's actually the one most likely to be used and should appear at the top of the list

MarcusDenker commented 5 years ago

yes, sorting the results is very interesting... we need to add (next week) a sort API so that we can start to play with different sort strategies.

myroslavarm commented 5 years ago

the alphabetical sorter implemented here helps : https://github.com/myroslavarm/Experimental-Completion/commit/6d5da0dc753c571825ffb510ac9c9683d27b82fd but does not seem to solve the issue completely. question : do we keep this open or close it?