Skip to content

Commit 2f1c969

Browse files
committed
Merge pull request #1228 from geraldus/g/fix-1184-static-tags-completions
Extend static completions with candidates from tags table
2 parents be9a877 + 0d73099 commit 2f1c969

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

haskell-completions.el

Lines changed: 2 additions & 1 deletion
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-
haskell-completions--keywords))))
299+
(append (tags-completion-table)
300+
haskell-completions--keywords)))))
300301
(list beg end candidates)))))
301302

302303

0 commit comments

Comments
 (0)