-
-
Notifications
You must be signed in to change notification settings - Fork 338
Closed
Description
I am using Emacs on Windows and customized the variable find-program to point to Cygwin's find executable. counsel-dired-jump does not respect this variable, however. This patch fixes the problem:
- (split-string
- (shell-command-to-string "find * -type d -not -path '*\/.git*'")
- "\n" t)
+ (split-string
+ (shell-command-to-string (concat find-program " * -type d -not -path '*\/.git*'"))
+ "\n" t)The same issue arises in counsel-file-jump.
Metadata
Metadata
Assignees
Labels
No labels