Variable: org-mobile-action-alist
org-mobile-action-alist is a variable defined in org-mobile.el.gz.
Value
(("edit" . org-mobile-edit))
Documentation
Alist with flags and actions for mobile sync.
When flagging an entry, the mobile application creates entries that look like
* F(action:data) [[id:entry-id][entry title]]
This alist defines that the ACTION in the parentheses of F() should mean, i.e. what action should be taken. The :data part in the parenthesis is optional. If present, the string after the colon will be passed to the action function as the first argument variable.
The car of each elements of the alist is an actions string. The cdr is a function that is called with the cursor on the headline of that entry. It should accept three arguments, the :data part, the old and new values for the entry.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-mobile.el.gz
(defconst org-mobile-action-alist '(("edit" . org-mobile-edit))
"Alist with flags and actions for mobile sync.
When flagging an entry, the mobile application creates entries
that look like
* F(action:data) [[id:entry-id][entry title]]
This alist defines that the ACTION in the parentheses of F()
should mean, i.e. what action should be taken. The :data part in
the parenthesis is optional. If present, the string after the
colon will be passed to the action function as the first argument
variable.
The car of each elements of the alist is an actions string. The
cdr is a function that is called with the cursor on the headline
of that entry. It should accept three arguments, the :data part,
the old and new values for the entry.")