Don't ignore all * buffers in consult-buffer

This commit is contained in:
David Morgan 2023-07-07 15:27:13 +01:00
parent 812309e3df
commit 46bbcfc841
Signed by: djm
GPG Key ID: C171251002C200F2
1 changed files with 6 additions and 1 deletions

View File

@ -337,7 +337,12 @@ DEFS is a plist associating completion categories to commands."
consult--preview-function #'ignore)))
(setq consult-narrow-key "<")
(add-to-list 'consult-buffer-filter "^\\*")
(append-to-list* 'consult-buffer-filter
"^\\*helpful"
"^\\*Warnings\\*"
"^\\*cider-test-report\\*"
"^\\*cider-error\\*"
"^\\*cider-inspect\\*")
(setq consult-project-function (lambda (_) (persp-current-project-root)))