Variable: org-attach-archive-delete

org-attach-archive-delete is a customizable variable defined in org-attach.el.gz.

Value

nil

Documentation

Non-nil means attachments are deleted upon archiving a subtree.

When set to query, ask the user instead.

This variable was added, or its default value changed, in Org version
8.3.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-attach.el.gz
(defcustom org-attach-archive-delete nil
  "Non-nil means attachments are deleted upon archiving a subtree.
When set to `query', ask the user instead."
  :group 'org-attach
  :version "26.1"
  :package-version '(Org . "8.3")
  :type '(choice
	  (const :tag "Never delete attachments" nil)
	  (const :tag "Always delete attachments" t)
	  (const :tag "Query the user" query)))