Fix counsel-file-jump advice for windows users
Was using the wrong arguments for windows version of ripgrep.
This commit is contained in:
parent
a426b73501
commit
9393680909
1 changed files with 1 additions and 1 deletions
|
@ -267,7 +267,7 @@ evil-ex-specific constructs, so we disable it solely in evil-ex."
|
||||||
(cond ((executable-find doom-projectile-fd-binary)
|
(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" "-E" ".git")))
|
||||||
((executable-find "rg")
|
((executable-find "rg")
|
||||||
(cons "rg" (list "--files" "--hidden" "--no-messages")))
|
(split-string (format counsel-rg-base-command "--files --no-messages") " " t))
|
||||||
((cons find-program args)))
|
((cons find-program args)))
|
||||||
(unless (listp args)
|
(unless (listp args)
|
||||||
(user-error "`counsel-file-jump-args' is a list now, please customize accordingly."))
|
(user-error "`counsel-file-jump-args' is a list now, please customize accordingly."))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue