I set helm-M-x-fuzzy-match to true, but it is not working as I want.
Asked
Active
Viewed 333 times
1 Answers
4
Check out https://github.com/syl20bnr/spacemacs/issues/13100.
There was a breaking change in Helm which removed the fuzzy-
variables you defined.
In place, you have to set the following variables in your init.el:
For emacs27:
(setq helm-completion-style 'emacs)
(setq completion-styles '(flex))
For emacs26:
(setq helm-completion-style 'emacs)
(setq completion-styles '(helm-flex))
Hope that helps anyone else with the same issue.

Zchpyvr
- 141
- 2