Variable: org-yank-dnd-default-attach-method
org-yank-dnd-default-attach-method is a customizable variable defined
in org.el.gz.
Value
nil
Documentation
Default attach method to use when DND action is unspecified.
This attach method is used when the DND action is private.
This is also used when org-yank-image-save-method is nil.
When nil, use org-attach-method.
This variable was added, or its default value changed, in Org version
9.7.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defcustom org-yank-dnd-default-attach-method nil
"Default attach method to use when DND action is unspecified.
This attach method is used when the DND action is `private'.
This is also used when `org-yank-image-save-method' is nil.
When nil, use `org-attach-method'."
:group 'org
:package-version '(Org . "9.7")
:type '(choice (const :tag "Default attach method" nil)
(const :tag "Copy" cp)
(const :tag "Move" mv)
(const :tag "Hard link" ln)
(const :tag "Symbolic link" lns)))