affe
affe copied to clipboard
affe-find and affe-grep hangs emacs
I'm running GNU Emacs 28.1, with native compilation enabled. When running the following configuration with emacs -Q, this can be achived with the following config:
(require 'package)
(add-to-list 'package-archives
'("melpa" . "https://melpa.org/packages/") t)
(unless (package-installed-p 'use-package)
(package-refresh-contents)
(package-install 'use-package))
(eval-when-compile
(require 'use-package))
(use-package consult
:ensure t)
(use-package affe
:ensure t)
When running affe-find or affe-grep the ui freezes untill I press C-g. No logs buffer are displayed.
Tried running affe-find with ripgrep or with the default find, with no sucssess.