Function: org-agenda-goto-mouse

org-agenda-goto-mouse is an interactive and byte-compiled function defined in org-agenda.el.gz.

Signature

(org-agenda-goto-mouse EV)

Documentation

Go to the Org file which contains the item at the mouse click.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-agenda.el.gz
(defun org-agenda-goto-mouse (ev)
  "Go to the Org file which contains the item at the mouse click."
  (interactive "e")
  (mouse-set-point ev)
  (org-agenda-goto))