emacs-lsp / lsp-haskell

lsp-mode :heart: haskell
https://emacs-lsp.github.io/lsp-haskell
GNU General Public License v3.0
236 stars 62 forks source link

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

Closed kamoii closed 2 years ago

kamoii commented 2 years ago

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)`
michaelpj commented 2 years ago

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