fix(haskell): remove evil-digit-argument-evil-beginning-of-line call

evil-digit motions were refactored in emacs-evil/evil#1519 (where
evil-digit-argument-evil-beginning-of-line was removed), which was
pulled in during 8645634608.

Fix: #5731
Ref: 8645634608
Ref: emacs-evil/evil#1519
This commit is contained in:
Henrik Lissner 2021-11-21 15:48:41 +01:00
parent 6130caa621
commit 616956ac94

View file

@ -14,7 +14,7 @@
(defun +haskell/evil-open-above () (defun +haskell/evil-open-above ()
"Opens a line above the current mode" "Opens a line above the current mode"
(interactive) (interactive)
(evil-digit-argument-or-evil-beginning-of-line) (evil-beginning-of-line)
(haskell-indentation-newline-and-indent) (haskell-indentation-newline-and-indent)
(evil-previous-line) (evil-previous-line)
(haskell-indentation-indent-line) (haskell-indentation-indent-line)