diff --git a/avy.el b/avy.el index 420bd1d..761631d 100644 --- a/avy.el +++ b/avy.el @@ -1615,6 +1615,13 @@ When BOTTOM-UP is non-nil, display avy candidates from top to bottom" (const :tag "Above" above) (const :tag "Below" below))) +;;;###autoload +(defun avy-goto-end-of-line (&optional arg) + "Call `avy-goto-line' and move to the end of the line." + (interactive "p") + (avy-goto-line arg) + (end-of-line)) + ;;;###autoload (defun avy-copy-line (arg) "Copy a selected line above the current line.