Function: org-mouse-yank-link
org-mouse-yank-link is an interactive and byte-compiled function
defined in org-mouse.el.gz.
Signature
(org-mouse-yank-link CLICK)
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-mouse.el.gz
(defun org-mouse-yank-link (click)
(interactive "e")
;; Give temporary modes such as isearch a chance to turn off.
(run-hooks 'mouse-leave-buffer-hook)
(mouse-set-point click)
(setq mouse-selection-click-count 0)
(delete-horizontal-space)
(insert-for-yank (concat " [[" (current-kill 0) "]] ")))