Variable: org-mobile-files

org-mobile-files is a customizable variable defined in org-mobile.el.gz.

Value

(org-agenda-files)

Documentation

Files to be staged for the mobile application.

This is basically a list of files and directories. Files will be staged directly. Directories will be search for files with the extension ".org". In addition to this, the list may also contain the following symbols:

org-agenda-files(var)/org-agenda-files(fun)
     This means include the complete, unrestricted list of files given in
     the variable org-agenda-files(var)/org-agenda-files(fun).

org-agenda-text-search-extra-files
     Include the files given in the variable
     org-agenda-text-search-extra-files.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-mobile.el.gz
(defcustom org-mobile-files '(org-agenda-files)
  "Files to be staged for the mobile application.

This is basically a list of files and directories.  Files will be staged
directly.  Directories will be search for files with the extension \".org\".
In addition to this, the list may also contain the following symbols:

`org-agenda-files'
     This means include the complete, unrestricted list of files given in
     the variable `org-agenda-files'.

`org-agenda-text-search-extra-files'
     Include the files given in the variable
     `org-agenda-text-search-extra-files'."
  :group 'org-mobile
  :type '(list :greedy t
	       (option (const :tag "org-agenda-files" org-agenda-files))
	       (option (const :tag "org-agenda-text-search-extra-files"
			      org-agenda-text-search-extra-files))
	       (repeat :inline t :tag "Additional files"
		       (file))))