Function: avy-goto-end-of-line
avy-goto-end-of-line is an autoloaded, interactive and byte-compiled
function defined in avy.el.
Signature
(avy-goto-end-of-line &optional ARG)
Documentation
Call avy-goto-line and move to the end of the line.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/avy-20241101.1357/avy.el
;;;###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))