mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
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 during8645634608
. Fix: #5731 Ref:8645634608
Ref: emacs-evil/evil#1519
This commit is contained in:
@ -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)
|
||||||
|
Reference in New Issue
Block a user