You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I upgraded haskell-mode today (this was my output from Cask):
haskell-mode 20160211.110 -> 20160315.1454
My init.el includes the wiki settings. After upgrading I tried to edit the following line in a diagrams file:
hsep 0.1 (...)
and I wanted to make the following modification:
vsep 0.1 [hsep 0.1 ..., ...]
but when I moved my cursor to the beginning of hsep and began typing:
vsep|hsep 0.1
^
I then found myself unable to press SPC to insert a space after vsep:
command-execute: Symbol's function definition is void: haskell-mode-contextual-space
Was haskell-mode-contextual-space removed from master? Removing the following in my init.el fixed the issue for me: ;;(define-key haskell-mode-map (kbd "SPC") 'haskell-mode-contextual-space)