I have this function:
crux-rename-file-and-buffer
, but when I do M-x rename, why isn't this shown as an alternative?
I thought ivy was supposed to assist with that, using a fuzzy search?
Why is it not picking this up?
My config to enable fuzzy:
(use-package counsel
:ensure t
:config
(use-package flx
:ensure t)
(ivy-mode 1)
(setq ivy-height 20)
(setq ivy-re-builders-alist '((t . ivy--regex-fuzzy))))
Any pointers?;)
crux-rename-file-and-buffer
. – Phil Hudson Apr 26 '22 at 08:27