diff options
Diffstat (limited to 'doc/misc/org.texi')
-rw-r--r-- | doc/misc/org.texi | 57 |
1 files changed, 39 insertions, 18 deletions
diff --git a/doc/misc/org.texi b/doc/misc/org.texi index 47ee0954671..3540ac8592a 100644 --- a/doc/misc/org.texi +++ b/doc/misc/org.texi @@ -2,7 +2,7 @@ @c %**start of header @setfilename ../../info/org @settitle The Org Manual -@set VERSION 7.9.2 (GNU Emacs 24.3) +@set VERSION 7.9.3 (GNU Emacs 24.3) @c Use proper quote and backtick for code sections in PDF output @c Cf. Texinfo manual 14.2 @@ -3747,6 +3747,8 @@ The most important commands to work with TODO entries are: @table @kbd @orgcmd{C-c C-t,org-todo} @cindex cycling, of TODO states +@vindex org-use-fast-todo-selection + Rotate the TODO state of the current item among @example @@ -3754,14 +3756,19 @@ Rotate the TODO state of the current item among '--------------------------------' @end example -The same rotation can also be done ``remotely'' from the timeline and -agenda buffers with the @kbd{t} command key (@pxref{Agenda commands}). +If TODO keywords have fast access keys (see @ref{Fast access to TODO +states}), you will be prompted for a TODO keyword through the fast selection +interface; this is the default behavior when +@var{org-use-fast-todo-selection} is @code{non-nil}. + +The same rotation can also be done ``remotely'' from the timeline and agenda +buffers with the @kbd{t} command key (@pxref{Agenda commands}). @orgkey{C-u C-c C-t} -Select a specific keyword using completion or (if it has been set up) -the fast selection interface. For the latter, you need to assign keys -to TODO states, see @ref{Per-file keywords}, and @ref{Setting tags}, for -more information. +When TODO keywords have no selection keys, select a specific keyword using +completion; otherwise force cycling through TODO states with no prompt. When +@var{org-use-fast-todo-selection} is set to @code{prefix}, use the fast +selection interface. @kindex S-@key{right} @kindex S-@key{left} @@ -5512,7 +5519,7 @@ example with optional time @example * 22:00-23:00 The nerd meeting on every 2nd Thursday of the month - <%%(org-float t 4 2)> + <%%(diary-float t 4 2)> @end example @item Time/Date range @@ -5850,7 +5857,7 @@ entries. Org mode will issue early and late warnings based on the assumption that the timestamp represents the @i{nearest instance} of the repeater. However, the use of diary sexp entries like @c -@code{<%%(org-float t 42)>} +@code{<%%(diary-float t 42)>} @c in scheduling and deadline timestamps is limited. Org mode does not know enough about the internals of each sexp function to issue early and @@ -6539,7 +6546,7 @@ suggestion.} for capturing new material. @table @kbd @orgcmd{C-c c,org-capture} Call the command @code{org-capture}. Note that this keybinding is global and -not active by default; you need to install it. If you have templates +not active by default: you need to install it. If you have templates @cindex date tree defined @pxref{Capture templates}, it will offer these templates for selection or use a new Org outline node as the default template. It will @@ -8621,6 +8628,13 @@ buffer, or a sparse tree (the latter covering of course only the current buffer). @kindex C-c a C @vindex org-agenda-custom-commands +@cindex agenda views, main example +@cindex tags, as an agenda view +@cindex todo, as an agenda view +@cindex tags-todo +@cindex todo-tree +@cindex occur-tree +@cindex tags-tree Custom commands are configured in the variable @code{org-agenda-custom-commands}. You can customize this variable, for @@ -8681,6 +8695,9 @@ additional key (@kbd{l}, @kbd{p} or @kbd{k}) to select a name (Lisa, Peter, or Kim) as additional tag to match. @end table +Note that the @code{*-tree} agenda views need to be called from an +Org buffer as they operate on the current buffer only. + @node Block agenda, Setting Options, Storing searches, Custom agenda views @subsection Block agenda @cindex block agenda @@ -16537,14 +16554,18 @@ to the directory @code{org-mobile-directory}. By default this list contains all agenda files (as listed in @code{org-agenda-files}), but additional files can be included by customizing @code{org-mobile-files}. File names will be staged with paths relative to @code{org-directory}, so all files should be -inside this directory. The push operation also creates a special Org file -@file{agendas.org} with all custom agenda view defined by the -user@footnote{While creating the agendas, Org mode will force ID properties -on all referenced entries, so that these entries can be uniquely identified -if @i{MobileOrg} flags them for further action. If you do not want to get -these properties in so many entries, you can set the variable -@code{org-mobile-force-id-on-agenda-items} to @code{nil}. Org mode will then -rely on outline paths, in the hope that these will be unique enough.}. +inside this directory@footnote{Symbolic links in @code{org-directory} need to +have the same name than their targets.}. + +The push operation also creates a special Org file @file{agendas.org} with +all custom agenda view defined by the user@footnote{While creating the +agendas, Org mode will force ID properties on all referenced entries, so that +these entries can be uniquely identified if @i{MobileOrg} flags them for +further action. If you do not want to get these properties in so many +entries, you can set the variable @code{org-mobile-force-id-on-agenda-items} +to @code{nil}. Org mode will then rely on outline paths, in the hope that +these will be unique enough.}. + Finally, Org writes the file @file{index.org}, containing links to all other files. @i{MobileOrg} first reads this file from the server, and then downloads all agendas and Org files listed in it. To speed up the download, |