Closed
Description
I have my own minor mode that binds ;
. haskell-indentation
is very agressive in binding that key as well. I tried various methods, but only this allows to tame ;
:
(defun mk-purge-that-nice-thing ()
(define-key haskell-indentation-mode-map (kbd ";") nil))
(add-hook 'haskell-indentation-mode-hook #'mk-purge-that-nice-thing)
Variations like this do not work:
(eval-after-load 'haskell-mode
'(setq-default haskell-indentation-mode-map (make-sparse-keymap)))
Is there some option to forbid haskell-indentation-mode
bind anything?
Metadata
Metadata
Assignees
Labels
No labels