Skip to content

Commit

Permalink
Fix regression cauased by 55f29f0
Browse files Browse the repository at this point in the history
Refactoring accidentally changed `evil-operator-state-p`
to `evil-operator-state`
  • Loading branch information
tomdl89 committed May 3, 2024
1 parent f564ffa commit 76667a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion evil-commands.el
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ of the line or the buffer; just return nil."
(forward-char)
;; don't put the cursor on a newline
(or evil-move-beyond-eol
(evil-visual-state-p) (evil-operator-state)
(evil-visual-state-p) (evil-operator-state-p)
(not (eolp)) (bolp)
(forward-char))))))

Expand Down

0 comments on commit 76667a1

Please sign in to comment.