Skip to content
Merged
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
4 changes: 2 additions & 2 deletions vterm.el
Original file line number Diff line number Diff line change
@@ -1692,15 +1692,15 @@ More information see `vterm--prompt-tracking-enabled-p' and
Move the point to the first character after the shell prompt on this line.
If the point is already there, move to the beginning of the line.
Effectively toggle between the two positions."
(interactive)
(interactive "^")
(if (vterm--at-prompt-p)
(goto-char (vterm--get-beginning-of-line))
(goto-char (max (or (vterm--get-prompt-point) 0)
(vterm--get-beginning-of-line)))))

(defun vterm-end-of-line ()
"Move point to the end of the line, bypassing line wraps."
(interactive)
(interactive "^")
(goto-char (vterm--get-end-of-line)))

(defun vterm-reset-cursor-point ()