summaryrefslogtreecommitdiff
path: root/modes/vterm
diff options
context:
space:
mode:
authorQuang Luong <quang@cloudflare.com>2022-05-27 23:57:22 +0100
committerJames <1227856+jojojames@users.noreply.github.com>2022-06-01 08:22:50 -0700
commitfe11bdd7ddded8b5ce8395b1f904fdbbbad7dfd7 (patch)
treea47f806c758e9c37c0a6ae3ccc6d67828c2e1db3 /modes/vterm
parenta63cb007bf15c3fd4c3322f29f85d18d5574f7ba (diff)
Correct cursor position when evil-append in vterm
Diffstat (limited to 'modes/vterm')
-rw-r--r--modes/vterm/evil-collection-vterm.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/modes/vterm/evil-collection-vterm.el b/modes/vterm/evil-collection-vterm.el
index 059ffc3..9232ca4 100644
--- a/modes/vterm/evil-collection-vterm.el
+++ b/modes/vterm/evil-collection-vterm.el
@@ -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 ()