Skip to content

Commit

Permalink
Call projectile-ignored-* functions in helm-ack
Browse files Browse the repository at this point in the history
I forgot to actually call the projectile-ignored-directory/files
functions in my previous fix (PR #767) of #766.
  • Loading branch information
kain88-de committed Jun 21, 2015
1 parent 1750295 commit df3e7d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions helm-projectile.el
Expand Up @@ -718,10 +718,10 @@ If it is nil, or ack/ack-grep not found then use default grep command."
'identity
(-union (-map (lambda (path)
(concat "--ignore-dir=" (file-name-nondirectory (directory-file-name path))))
projectile-ignored-directories)
(projectile-ignored-directories))
(-map (lambda (path)
(concat "--ignore-file=match:" (shell-quote-argument path)))
projectile-ignored-files)) " "))
(projectile-ignored-files))) " "))
(helm-ack-grep-executable (cond
((executable-find "ack") "ack")
((executable-find "ack-grep") "ack-grep")
Expand Down

0 comments on commit df3e7d6

Please sign in to comment.