emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Matt Lundin <mdl@imapmail.org>
To: Yuri Goncharov <gy@hl.ru>
Cc: Emacs-orgmode@gnu.org
Subject: Re: custom agenda view
Date: Thu, 24 Dec 2009 06:21:23 -0500	[thread overview]
Message-ID: <m2my18r51o.fsf@fastmail.fm> (raw)
In-Reply-To: <20091224141015.4645b8b2@n13> (Yuri Goncharov's message of "Thu, 24 Dec 2009 14:10:15 +0300")

Yuri Goncharov <gy@hl.ru> writes:

> I try to make custom agenda view with todo keyword STARTED and tag @HOME
> I wrote this code
>
> (setq org-agenda-custom-commands
>       (quote  
> 	(("w" "work tasks" tags-todo
> 	"+STARTED+@WORK" ((org-agenda-todo-ignore-with-date nil))) 
> 	("h" "home tasks" tags-todo
> 	"+STARTED+@HOME" ((org-agenda-todo-ignore-with-date nil))) 
> 	("n" "Notes" tags "NOTE" nil))))
>
> but it's not work.

Does the following work? Since STARTED is a todo state, it needs to be
specified with a different syntax.

(setq org-agenda-custom-commands
       (quote  
 	(("w" "work tasks" tags-todo
 	"@WORK/!STARTED" ((org-agenda-todo-ignore-with-date nil))) 
 	("h" "home tasks" tags-todo
 	"@HOME/!STARTED" ((org-agenda-todo-ignore-with-date nil))) 
 	("n" "Notes" tags "NOTE" nil))))

Best,
Matt

  parent reply	other threads:[~2009-12-24 11:21 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-12-24 11:10 custom agenda view Yuri Goncharov
2009-12-24 11:20 ` Manish
2009-12-24 11:21 ` Matt Lundin [this message]
2009-12-24 11:36   ` Yuri Goncharov
  -- strict thread matches above, loose matches on Subject: below --
2008-02-02 17:39 Custom " Sebastjan Trepca
2008-02-02 19:27 ` Sebastjan Trepca

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.orgmode.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=m2my18r51o.fsf@fastmail.fm \
    --to=mdl@imapmail.org \
    --cc=Emacs-orgmode@gnu.org \
    --cc=gy@hl.ru \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).