Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions evil-commands.el
Original file line number Diff line number Diff line change
Expand Up @@ -1893,7 +1893,9 @@ 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))
(if (evil-normal-state-p)
(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 +1946,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