Variable: org-attach-git-annex-auto-get

org-attach-git-annex-auto-get is a customizable variable defined in org-attach-git.el.gz.

Value

ask

Documentation

Confirmation preference for automatically getting annex files.

If this is the symbol ask, prompt using y-or-n-p. If t, always get. If nil, never get.

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

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-attach-git.el.gz
(defcustom org-attach-git-annex-auto-get 'ask
  "Confirmation preference for automatically getting annex files.
If this is the symbol `ask', prompt using `y-or-n-p'.
If t, always get.  If nil, never get."
  :group 'org-attach
  :package-version '(Org . "9.0")
  :version "26.1"
  :type '(choice
	  (const :tag "confirm with `y-or-n-p'" ask)
	  (const :tag "always get from annex if necessary" t)
	  (const :tag "never get from annex" nil)))