Fix sparse tree dispatch menu
* lisp/org.el (org-sparse-tree): Mention [r] in dispatch menu
This commit is contained in:
parent
81eba8dccd
commit
106ad6e9e5
|
@ -11962,13 +11962,13 @@ T Show entries with a specific TODO keyword.
|
||||||
m Show entries selected by a tags/property match.
|
m Show entries selected by a tags/property match.
|
||||||
p Enter a property name and its value (both with completion on existing
|
p Enter a property name and its value (both with completion on existing
|
||||||
names/values) and show entries with that property.
|
names/values) and show entries with that property.
|
||||||
/ Show entries matching a regular expression (`r' can be used as well)
|
r Show entries matching a regular expression (`/' can be used as well)
|
||||||
d Show deadlines due within `org-deadline-warning-days'.
|
d Show deadlines due within `org-deadline-warning-days'.
|
||||||
b Show deadlines and scheduled items before a date.
|
b Show deadlines and scheduled items before a date.
|
||||||
a Show deadlines and scheduled items after a date."
|
a Show deadlines and scheduled items after a date."
|
||||||
(interactive "P")
|
(interactive "P")
|
||||||
(let (ans kwd value)
|
(let (ans kwd value)
|
||||||
(message "Sparse tree: [/]regexp [t]odo [T]odo-kwd [m]atch [p]roperty [d]eadlines\n [b]efore-date [a]fter-date")
|
(message "Sparse tree: [r]egexp [/]regexp [t]odo [T]odo-kwd [m]atch [p]roperty\n [d]eadlines [b]efore-date [a]fter-date")
|
||||||
(setq ans (read-char-exclusive))
|
(setq ans (read-char-exclusive))
|
||||||
(cond
|
(cond
|
||||||
((equal ans ?d)
|
((equal ans ?d)
|
||||||
|
|
Loading…
Reference in New Issue