We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bcfe134 + 2652b0e commit 560859aCopy full SHA for 560859a
haskell-commands.el
@@ -712,7 +712,7 @@ function `xref-find-definitions' after new table was generated."
712
(format ":!cd %s && %s | %s"
713
(haskell-session-cabal-dir
714
(haskell-process-session (car state)))
715
- "find . -type f \\( -name '*.hs' -or -name '*.lhs' -or -name '*.hsc' \\) -not \\( -name '#*' -or -name '.*' \\) -print0"
+ "find . -type d \\( -path ./.stack-work -o -path ./dist -o -path ./.cabal-sandbox \\) -prune -o -type f \\( -name '*.hs' -or -name '*.lhs' -or -name '*.hsc' \\) -not \\( -name '#*' -or -name '.*' \\) -print0"
716
"xargs -0 hasktags -e -x"))))
717
:complete (lambda (state _response)
718
(when (cdr state)
0 commit comments