Variable: org-persist-remote-files
org-persist-remote-files is a customizable variable defined in
org-persist.el.gz.
Value
100
Documentation
Whether to keep persistent data for remote files.
When this variable is nil, never save persistent data associated with
remote files. When t, always keep the data. When
check-existence, contact remote server containing the file and only
keep the data when the file exists on the server. When a number, keep
up to that number persistent values for remote files.
Note that the last option check-existence may cause Emacs to show
password prompts to log in.
This variable was added, or its default value changed, in Org version
9.6.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-persist.el.gz
(defcustom org-persist-remote-files 100
"Whether to keep persistent data for remote files.
When this variable is nil, never save persistent data associated with
remote files. When t, always keep the data. When
`check-existence', contact remote server containing the file and only
keep the data when the file exists on the server. When a number, keep
up to that number persistent values for remote files.
Note that the last option `check-existence' may cause Emacs to show
password prompts to log in."
:group 'org-persist
:package-version '(Org . "9.6")
:type '(choice (const :tag "Never" nil)
(const :tag "Always" t)
(number :tag "Keep not more than X files")
(const :tag "Check if exist on remote" check-existence)))