You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes, in large repos, it may be helpful to limit pattern to match only beginnings of words. For example, ctpy will match ctrl.py but won't match control.py. How hard is to add such feature to cpsm? Which code is responsible for letter-by-letter matching process?
The text was updated successfully, but these errors were encountered:
cpsm's ranking algorithm is a bit complicated, but it already includes matching at the beginning of words as a very strong signal. Do you have a specific example of bad behavior?
Sometimes, in large repos, it may be helpful to limit pattern to match only beginnings of words. For example,
ctpy
will matchctrl.py
but won't matchcontrol.py
. How hard is to add such feature tocpsm
? Which code is responsible for letter-by-letter matching process?The text was updated successfully, but these errors were encountered: