On Sep 5, 2006, at 23:36, Xiao-Yong Jin wrote:
It's a very nice introduction to both emacs org-mode and GTD.  I would
like to see an easier implementation for your Portable Next Action
lists using the check box feature in the org-mode.  I think it's
better if you put all the next actions in check box list, but leave
the head lines for different categories.  But then I come to a
question.  Is there a way to list all the check box lists in a sparse
tree?  If there is, we can just print it.

Use org-occur to create such a tree.

Interactively with

 C-c / \[[ X]\] RET

or, if you want to do this more often, with a special command

(defun my-checkbox-tree ()
        (interactive)
    (org-occur "\\[[ X]\\]" 'org-at-item-p))

Best wishes

- Carsten



_______________________________________________
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Reply via email to