Windows上emacs模糊搜索 如何解决?

我在windows上无法使用fzf模糊搜索。无论用什么方法安装fzf,在emacs里emacs-fzf始终无法正常工作?请问有谁知道该如何配置吗?

另外windows里everything我觉得很好用,还可以与utools结合使用。请问emacs可以和everything结合使用吗?

可以先自行搜索一下网络吗?

EmacsWiki: Everything https://www.emacswiki.org/emacs/Everything

我找到这个了 就是我查询才知道好像可以跟everything联合。 但是我配置了一下 并没有成功

从别的地方找到的一个配置:

Replacing locate with everything in counsel

The locate command is really great… if you’re not on Windows. Since I use the ivy \ swiper \ counsel stack, I’ve added the following to my init to use the Windows search tool everything instead:

(with-eval-after-load 'counsel
  (when (eq system-type 'windows-nt)
    (defun counsel-locate-cmd-es (input)
      "Return a shell command based on INPUT."
      (counsel-require-program "es.exe")
      (format "es.exe -r %s"
              (counsel--elisp-to-pcre
               (ivy--regex input t))))))
1 个赞

Snails 天生支持 everything snails/snails-backend-everything.el at master · manateelazycat/snails · GitHub

1 个赞