Skip to content

Enable selection for commands in copy-mode #612

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 30, 2023
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
Expand Up @@ -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 ()
Expand Down