mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
Don't null-byte delimit ripgrep file list
This commit is contained in:
@ -262,7 +262,7 @@ evil-ex-specific constructs, so we disable it solely in evil-ex."
|
||||
(cond ((executable-find doom-projectile-fd-binary)
|
||||
(cons doom-projectile-fd-binary (list "-t" "f" "-E" ".git")))
|
||||
((executable-find "rg")
|
||||
(append (list "rg" "-0" "--files" "--color=never" "--hidden" "--no-messages")
|
||||
(append (list "rg" "--files" "--color=never" "--hidden" "--no-messages")
|
||||
(cl-loop for dir in projectile-globally-ignored-directories
|
||||
collect "--glob" and collect (concat "!" dir))
|
||||
(if IS-WINDOWS (list "--path-separator /"))))
|
||||
|
Reference in New Issue
Block a user