mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-29 14:33:34 -05:00
Fix projectile ignoring symlinks
Due to the underlying program (fd) ignoring them.
This commit is contained in:
@@ -264,7 +264,7 @@ evil-ex-specific constructs, so we disable it solely in evil-ex."
|
||||
:override #'counsel--find-return-list
|
||||
(cl-destructuring-bind (find-program . args)
|
||||
(cond ((executable-find doom-projectile-fd-binary)
|
||||
(cons doom-projectile-fd-binary (list "-t" "f" "-E" ".git")))
|
||||
(cons doom-projectile-fd-binary (list "-t" "f" "-t" "l" "-E" ".git")))
|
||||
((executable-find "rg")
|
||||
(append (list "rg" "--files" "--color=never" "--hidden" "--no-messages")
|
||||
(cl-loop for dir in projectile-globally-ignored-directories
|
||||
|
Reference in New Issue
Block a user