emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [O] Tags question


From: Herbert Sitz
Subject: Re: [O] Tags question
Date: Sat, 24 Dec 2011 20:28:37 +0000 (UTC)
User-agent: Loom/3.14 (http://gmane.org/)

Nick Dokos <nicholas.dokos <at> hp.com> writes:
> There is a function that is used for tags completion:
> 
> ,----
> | org-global-tags-completion-table is a Lisp function in `org.el'.
> | 
> | (org-global-tags-completion-table &optional FILES)
> | 
> | Return the list of all tags in all agenda buffer/files.
> | Optional FILES argument is a list of files to which can be used
> | instead of the agenda files.
> `----
> 

An easy alternative if the list of tags is small and relatively stable would
be to create a custom block agenda view (or maybe several different block
agendas).  Below is example code from the Org
documentation:

(setq org-agenda-custom-commands
           '(("h" "Agenda and Home-related tasks"
              ((agenda "")
               (tags-todo "home")
               (tags "garden")))
             ("o" "Agenda and Office-related tasks"
              ((agenda "")
               (tags-todo "work")
               (tags "office")))))

"This will define C-c a h to create a multi-block view for stuff you need to
attend to at home. The resulting agenda buffer will contain your agenda for the
current week, all TODO items that carry the tag ‘home’, and also all lines 
tagged with ‘garden’. Finally the command C-c a o provides a similar view for 
office tasks."
http://orgmode.org/manual/Block-agenda.html#Block-agenda




reply via email to

[Prev in Thread] Current Thread [Next in Thread]