Correct cursor position when evil-append in vterm

This commit is contained in:
Quang Luong 2022-05-27 23:57:22 +01:00 committed by James
parent a63cb007bf
commit fe11bdd7dd
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ after the prompt."
(defun evil-collection-vterm-append ()
"Append character after cursor."
(interactive)
(vterm-goto-char (1+ (point)))
(vterm-goto-char (point))
(call-interactively #'evil-append))
(defun evil-collection-vterm-append-line ()