Skip to content

Commit 8c9d2bc

Browse files
committed
Merge pull request #1293 from geraldus/g/fix-1234-tags-completion-table
Fix 1234: tags-completion-table
2 parents bf2e5af + d479931 commit 8c9d2bc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

haskell-completions.el

+2-1
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,8 @@ PREFIX should be a list such one returned by
296296
('haskell-completions-language-extension-prefix
297297
haskell-ghc-supported-extensions)
298298
(otherwise
299-
(append (tags-completion-table)
299+
(append (when (bound-and-true-p haskell-tags-on-save)
300+
tags-completion-table)
300301
haskell-completions--keywords)))))
301302
(list beg end candidates)))))
302303

0 commit comments

Comments
 (0)