1
0
mirror of https://github.com/jojojames/evil-collection.git synced 2024-06-24 07:26:37 +02:00

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

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 ()