Variable: org-mobile-agendas

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

Value

all

Documentation

The agendas that should be pushed to the mobile application.

Allowed values:

default the weekly agenda and the global TODO list
custom all custom agendas defined by the user
all the custom agendas and the default ones
list a list of selection key(s) as string.

This variable was added, or its default value changed, in Emacs 24.1.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-mobile.el.gz
(defcustom org-mobile-agendas 'all
  "The agendas that should be pushed to the mobile application.

Allowed values:

`default'  the weekly agenda and the global TODO list
`custom'   all custom agendas defined by the user
`all'      the custom agendas and the default ones
`list'     a list of selection key(s) as string."
  :group 'org-mobile
  :version "24.1"
  :type '(choice
	  (const :tag "Default Agendas" default)
	  (const :tag "Custom Agendas" custom)
	  (const :tag "Default and Custom Agendas" all)
	  (repeat :tag "Selected"
		  (string :tag "Selection Keys"))))