Skip to content

Commit

Permalink
Merge pull request haskell#469 from cjmazey/master
Browse files Browse the repository at this point in the history
Make haskell-process-generate-tags really output TAGS
  • Loading branch information
chrisdone committed Feb 15, 2015
2 parents 35633bf + 66a89f2 commit 34be008
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 34be008

Please sign in to comment.