bling / fzf.el

A front-end for fzf
GNU General Public License v3.0
360 stars 50 forks source link

fzf stopped working with the latest build of emacs #78

Closed vnckppl closed 1 year ago

vnckppl commented 1 year ago

With today's build of emacs 29, fzf stopped working. It will open up the menu with all the search candidates, but it will not filter or select upon typing.

vnckppl commented 1 year ago

Seems to be related to (linum-mode 0) in fzf.el. Fixed by changing this line to:

(when (not (version<= "28.0.50" emacs-version))
(linum-mode 0))

See pull request.