summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarsten Dominik <carsten.dominik@gmail.com>2010-05-12 08:04:27 +0200
committerCarsten Dominik <carsten.dominik@gmail.com>2010-05-12 08:04:27 +0200
commit3d8b6de2ad00220e164f226fb0dde5ada831d21b (patch)
tree73a33b946ba488308bf425c7083104f7cdab6287
parent4b1ee671b8ff05e0d955dcdf0280e158a303133e (diff)
downloadorg-mode-3d8b6de2ad00220e164f226fb0dde5ada831d21b.tar.gz
Free up the `C-c C-v' key for Org Babel
TODO sparse trees are also accessible with `C-c / t'.
-rw-r--r--doc/org.texi8
-rw-r--r--doc/orgguide.texi8
-rw-r--r--lisp/org.el5
3 files changed, 9 insertions, 12 deletions
diff --git a/doc/org.texi b/doc/org.texi
index 7c2fbfe..0cc98d6 100644
--- a/doc/org.texi
+++ b/doc/org.texi
@@ -3274,10 +3274,8 @@ mostly if more than two TODO states are possible (@pxref{TODO
extensions}). See also @ref{Conflicts}, for a discussion of the interaction
with @code{shift-selection-mode}. See also the variable
@code{org-treat-S-cursor-todo-selection-as-state-change}.
-@kindex C-c C-v
@kindex C-c / t
@cindex sparse tree, for TODO
-@item C-c C-v
@itemx C-c / t
@vindex org-todo-keywords
View TODO items in a @emph{sparse tree} (@pxref{Sparse trees}). Folds the
@@ -3387,10 +3385,10 @@ select the right type for a task. But when you return to the item after some
time and execute @kbd{C-c C-t} again, it will switch from any name directly
to DONE. Use prefix arguments or completion to quickly select a specific
name. You can also review the items of a specific TODO type in a sparse tree
-by using a numeric prefix to @kbd{C-c C-v}. For example, to see all things
-Lucy has to do, you would use @kbd{C-3 C-c C-v}. To collect Lucy's items
+by using a numeric prefix to @kbd{C-c / t}. For example, to see all things
+Lucy has to do, you would use @kbd{C-3 C-c / t}. To collect Lucy's items
from all agenda files into a single buffer, you would use the numeric prefix
-argument as well when creating the global TODO list: @kbd{C-3 C-c t}.
+argument as well when creating the global TODO list: @kbd{C-3 C-c a t}.
@node Multiple sets in one file, Fast access to TODO states, TODO types, TODO extensions
@subsection Multiple keyword sets in one file
diff --git a/doc/orgguide.texi b/doc/orgguide.texi
index 4b4a69c..b2f132b 100644
--- a/doc/orgguide.texi
+++ b/doc/orgguide.texi
@@ -142,8 +142,8 @@ Hyperlinks
TODO Items
-* Using TODO states::
-* Multi-state workflows::
+* Using TODO states:: Setting and switching states
+* Multi-state workflows:: More than just on/off
* Progress logging:: Dates and notes for progress
* Priorities:: Some things are more important than others
* Breaking down tasks:: Splitting a task into manageable pieces
@@ -860,8 +860,8 @@ throughout your notes file. Org mode compensates for this by providing
methods to give you an overview of all the things that you have to do.
@menu
-* Using TODO states::
-* Multi-state workflows::
+* Using TODO states:: Setting and switching states
+* Multi-state workflows:: More than just on/off
* Progress logging:: Dates and notes for progress
* Priorities:: Some things are more important than others
* Breaking down tasks:: Splitting a task into manageable pieces
diff --git a/lisp/org.el b/lisp/org.el
index 0381a26..38603a6 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -15618,7 +15618,6 @@ with a description part will be inlined."
(org-defkey org-mode-map "\C-c\C-s" 'org-schedule)
(org-defkey org-mode-map "\C-c\C-d" 'org-deadline)
(org-defkey org-mode-map "\C-c;" 'org-toggle-comment)
-(org-defkey org-mode-map "\C-c\C-v" 'org-show-todo-tree)
(org-defkey org-mode-map "\C-c\C-w" 'org-refile)
(org-defkey org-mode-map "\C-c/" 'org-sparse-tree) ; Minor-mode reserved
(org-defkey org-mode-map "\C-c\\" 'org-match-sparse-tree) ; Minor-mode res.
@@ -16870,8 +16869,8 @@ See the individual commands for more information."
["Complete Keyword" org-complete (assq :todo-keyword (org-context))]
["Next keyword set" org-shiftcontrolright (and (> (length org-todo-sets) 1) (org-on-heading-p))]
["Previous keyword set" org-shiftcontrolright (and (> (length org-todo-sets) 1) (org-on-heading-p))])
- ["Show TODO Tree" org-show-todo-tree t]
- ["Global TODO list" org-todo-list t]
+ ["Show TODO Tree" org-show-todo-tree :active t :keys "C-c / t"]
+ ["Global TODO list" org-todo-list :active t :keys "C-c a t"]
"--"
["Enforce dependencies" (customize-variable 'org-enforce-todo-dependencies)
:selected org-enforce-todo-dependencies :style toggle :active t]