Backspace in tuareg-mode does not delete the character.
This commit is contained in:
hasan356 2019-01-31 01:07:57 +05:30 committed by smile13241324
parent 022b0b3823
commit 5606f4e258

View file

@ -100,6 +100,9 @@
(defun ocaml/init-tuareg ()
(use-package tuareg
:bind (:map tuareg-mode-map
;; Workaround to preserve vim backspace in normal mode
([backspace] . nil))
:mode (("\\.ml[ily]?$" . tuareg-mode)
("\\.topml$" . tuareg-mode))
:defer t