Function: org-attach-attach-lns
org-attach-attach-lns is an interactive and byte-compiled function
defined in org-attach.el.gz.
Signature
(org-attach-attach-lns)
Documentation
Attach a file by creating a symbolic link to it.
Beware that this does not work on systems that do not support symbolic links. On some systems, this apparently does copy the file instead.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-attach.el.gz
(defun org-attach-attach-lns ()
"Attach a file by creating a symbolic link to it.
Beware that this does not work on systems that do not support symbolic links.
On some systems, this apparently does copy the file instead."
(interactive)
(let ((org-attach-method 'lns)) (call-interactively 'org-attach-attach)))