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
I wonder how this wasn't raised before, but helm-company stores company-candidates strings in a hash-table.
Elisp hash tables are unordered, so (hash-table-keys helm-company-display-candidates-hash) applies a random order to the list of completions.
I finally managed to find the issue today and this is my fix:
Hey, thanks for maintaining this repo.
I wonder how this wasn't raised before, but
helm-company
stores company-candidates strings in a hash-table.Elisp hash tables are unordered, so (hash-table-keys helm-company-display-candidates-hash) applies a random order to the list of completions.
I finally managed to find the issue today and this is my fix:
Hope this helps
The text was updated successfully, but these errors were encountered: