emacs-lsp/lsp-haskell

Symbol’s function definition is void: lsp-haskell-completion-in-comments

Closed this issue · 1 comments

Updated lsp-haskell, and now having errors:

byte-code: Symbol’s function definition is void: lsp-haskell-completion-in-comments

Looks like this code from lsp-haskell.el:

    :completion-in-comments? (lsp-haskell-completion-in-comments)

needs to be

    :completion-in-comments? '(lsp-haskell-completion-in-comments)

or

    :completion-in-comments? (list lsp-haskell-completion-in-comments)`

Sorry, this is my fault. I don't know how this worked when I tested it :/