Skip to content

Commit

Permalink
Make haskell-process-generate-tags really output TAGS
Browse files Browse the repository at this point in the history
The `find' invocation was only generating any output for *.hsc files.
  • Loading branch information
cjmazey committed Feb 15, 2015
1 parent 35633bf commit 66a89f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion haskell-commands.el
Original file line number Diff line number Diff line change
Expand Up @@ -631,7 +631,7 @@ command from GHCi."
(format ":!cd %s && %s | %s"
(haskell-session-cabal-dir
(haskell-process-session (car state)))
"find . -name '*.hs' -or -name '*.lhs' -or -name '*.hsc' -print0"
"find . -name '*.hs' -print0 -or -name '*.lhs' -print0 -or -name '*.hsc' -print0"
"xargs -0 hasktags -e -x"))))
:complete (lambda (state response)
(when (cdr state)
Expand Down

0 comments on commit 66a89f2

Please sign in to comment.