In the *Fuzzy Completions* buffer, the message at the top of the buffer reads: For help on how the use ... It should read: For help on how to use ...
In the list of completions, the Flags column shows 8 hyphens, but only 7 flags are listed.
What is the meaning of the score?
In the target buffer, I was unable to get out of Fuzzy Completion mode. I had to kill the SLIME session and restart. Keying a character which could not be a completion did *not* end the minor mode.
the scores in the buffer are the ad-hoc score that is used to sort the matches. e.g. consecutive matching chars have exponential score, etc...
re key bindings, it's copied from the docstring of slime-fuzzy-completions-mode:
With focus in *Fuzzy Completions*: Type `n' and `p' (`UP', `DOWN') to navigate between completions. Type `RET' or `TAB' to select the completion near point. Type `q' to abort.
With focus in the target buffer: Type `UP' and `DOWN' to navigate between completions. Type a character that does not constitute a symbol name to insert the current choice and then that character (`(', `)', `SPACE', `RET'.) Use `TAB' to simply insert the current choice. Use C-g to abort.
could this be presented better? e.g. inseting a pointer to this into the top of the completion buffer that can be disabled with customization? is it worth it?