Skip to content

Commit

Permalink
Move cursor back before the pasted text in evil-paste-before and evil…
Browse files Browse the repository at this point in the history
…-paste-after
  • Loading branch information
simias committed Jul 23, 2019
1 parent 297b8f3 commit ed55572
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions evil-commands.el
Original file line number Diff line number Diff line change
Expand Up @@ -1893,7 +1893,8 @@ The return value is the yanked text."
(evil-set-marker ?\] (1- (point)))
(when (and evil-move-cursor-back
(> (length text) 0))
(backward-char))))
(backward-char))
(evil-exchange-point-and-mark)))
;; no paste-pop after pasting from a register
(when register
(setq evil-last-paste nil))
Expand Down Expand Up @@ -1944,7 +1945,8 @@ The return value is the yanked text."
(evil-set-marker ?\[ beg)
(evil-set-marker ?\] (1- (point)))
(when (evil-normal-state-p)
(evil-move-cursor-back)))))
(evil-move-cursor-back))
(evil-exchange-point-and-mark))))
(when register
(setq evil-last-paste nil))
(and (> (length text) 0) text)))))
Expand Down

0 comments on commit ed55572

Please sign in to comment.