Rainer Stengele <[EMAIL PROTECTED]> writes:

> I am struggling to switch the set of used agenda org files between
> different custom agenda commands.
>
> I tried something like
>
> (setq org-agenda-custom-commands
>       '(
>       ("k" . "Kundenbezogene / Ketegoriebezogene TODOs ...")
>         ("ka" tags-todo "CATEGORY=\"ADMIN\"")
>         ("kP" tags-todo "CATEGORY=\"PRIVAT\""
>        ((org-agenda-files (quote ("~/org/PRIVAT/PRIVAT.org")))))

Playing with customize I came up with this possibility:

(setq org-agenda-custom-commands
      '(
        ("k" . "Kundenbezogene / Ketegoriebezogene TODOs ...")
        ("ka" tags-todo "CATEGORY=\"ADMIN\"")
        ("kP" tags-todo "CATEGORY=\"PRIVAT\""
         ((org-agenda-files
           '("~/org/PRIVAT/PRIVAT.org"))))))

Will that do it?

Dan

-- 
--------------
Dan Griswold
Rochester, NY
--------------



_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Reply via email to