Function: TeX-view-mouse

TeX-view-mouse is an interactive and byte-compiled function defined in tex.el.

Signature

(TeX-view-mouse EVENT)

Documentation

Start TeX-view at mouse position.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
(defun TeX-view-mouse (event)
  "Start `TeX-view' at mouse position."
  (interactive "e")
  (with-current-buffer (window-buffer (posn-window (event-start event)))
    (goto-char (posn-point (event-start event)))
    (TeX-view)))