Merge pull request #1125 from ar1a/projectile-command-v2

Improve projectile-git-command
This commit is contained in:
Henrik Lissner 2019-01-20 14:07:56 -05:00 committed by GitHub
commit f161a40522
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -59,7 +59,7 @@
;; fd is a rust program that is significantly faster. It also respects ;; fd is a rust program that is significantly faster. It also respects
;; .gitignore. This is recommended in the projectile docs ;; .gitignore. This is recommended in the projectile docs
(when (executable-find "fd") (when (executable-find "fd")
(setq projectile-git-command "fd . --type f -0" (setq projectile-git-command "fd . --type f -0 -H -E .git"
projectile-generic-command projectile-git-command))) projectile-generic-command projectile-git-command)))