Fasd integration for consult
. Basically helm-fasd alternative for helm-less configuration with some improvement.
The query can be filtered first by fasd then a second time by consult the same ways as consult-grep
.
For example: #Dow#cons
may find the consult.el
file in Downloads
directory.
It’s generally advised to also install fasd
package from melpa
to keep fasd
cache up to date with Emacs, but it’s not required.
The package provide an interactive function consult-fasd
that should be binded to a key (or can be used directly with M-x
.)
(use-package consult-fasd :ensure fasd :defer t
:quelpa (consult-fasd :fetcher github :repo "linktohack/consult-fasd")
:init
(global-fasd-mode 1)
(define-key global-map (kbd "s-T") #'consult-fasd))
(defcustom consult-fasd-args "fasd -Rl" ...)
GPL3