affe icon indicating copy to clipboard operation
affe copied to clipboard

affe-find and affe-grep hangs emacs

Open heyitscassio opened this issue 3 years ago • 0 comments

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.

heyitscassio avatar Sep 04 '22 01:09 heyitscassio