Function: avy-action-goto

avy-action-goto is a byte-compiled function defined in avy.el.

Signature

(avy-action-goto PT)

Documentation

Goto PT.

Source Code

;; Defined in ~/.emacs.d/elpa/avy-20241101.1357/avy.el
(defun avy-action-goto (pt)
  "Goto PT."
  (let ((frame (window-frame (selected-window))))
    (unless (equal frame (selected-frame))
      (select-frame-set-input-focus frame)
      (raise-frame frame))
    (goto-char pt)))