"Alan E. Davis" <lngn...@gmail.com> writes:

>     |
>     | (org-capture &optional GOTO KEYS)
>     |
>
> I THINK I understand that GOTO here refers to the prefix C-u ?  And C-u C-u 
> circumvents this?

GOTO is the value of the prefix.  C-u has a value of 4

For C-u C-M-r       GOTO is set to 4 (due to the single prefix)
For C-u C-u C-M-r   GOTO is set to 16 (due to the double prefix)

The code for org-capture looks for specific prefix values and changes
the behaviour of the function accordingly.

,----[ code from org-capture ]
|    ((equal goto '(4)) (org-capture-goto-target))
|    ((equal goto '(16)) (org-capture-goto-last-stored))
`----

-Bernt

_______________________________________________
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Reply via email to