Skip to content

Commit

Permalink
fix(haskell): remove evil-digit-argument-evil-beginning-of-line call
Browse files Browse the repository at this point in the history
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 8645634.

Fix: doomemacs#5731
Ref: 8645634
Ref: emacs-evil/evil#1519
  • Loading branch information
hlissner authored and peterhoeg committed Nov 26, 2021
1 parent fe433d8 commit b6c333e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/lang/haskell/autoload.el
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
(defun +haskell/evil-open-above ()
"Opens a line above the current mode"
(interactive)
(evil-digit-argument-or-evil-beginning-of-line)
(evil-beginning-of-line)
(haskell-indentation-newline-and-indent)
(evil-previous-line)
(haskell-indentation-indent-line)
Expand Down

0 comments on commit b6c333e

Please sign in to comment.