* agenda with only deadlines?
@ 2009-10-20 1:28 Michael Gilbert
2009-10-22 12:21 ` Carsten Dominik
0 siblings, 1 reply; 2+ messages in thread
From: Michael Gilbert @ 2009-10-20 1:28 UTC (permalink / raw)
To: org-mode Mailinglist
Hi --
I'm still struggling with this one: My main agenda view has both
scheduled and deadlined items, but I'm interested in creating a custom
view that shows only items who have a deadline of today or past due.
This isn't working for me:
(setq org-agenda-custom-commands
'(("d" "Due today" agenda ""
((org-deadline-warning-days 0)
(org-agenda-skip-scheduled-if-deadline-is-shown t)
(org-agenda-skip-function '(org-agenda-skip-entry-if 'notdeadline))))
))
This one shows all sorts if items that have deadlines in the future,
displaying them as scheduled. Yes, many items item have both
timestamps. Suggestions?
TIA!
-- Michael
P.S. Also, the documentation often lists various settings as
"examples". I am not an experienced emacs user, so I am curious... how
do I go about finding comprehensive lists of settings for various
contexts?
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: agenda with only deadlines?
2009-10-20 1:28 agenda with only deadlines? Michael Gilbert
@ 2009-10-22 12:21 ` Carsten Dominik
0 siblings, 0 replies; 2+ messages in thread
From: Carsten Dominik @ 2009-10-22 12:21 UTC (permalink / raw)
To: Michael Gilbert; +Cc: org-mode Mailinglist
Hi Michael,
What about just creating a single day view? Like
(setq org-agenda-custom-commands
'(("d" "Due today" agenda ""
((org-deadline-warning-days 0)
(org-agenda-skip-scheduled-if-deadline-is-shown t)
(org-agenda-ndays 1)
(org-agenda-skip-function '(org-agenda-skip-entry-if 'notdeadline))))
))
Or did you mean that you have them scheduled for today or earlier -
then they should of course show up today.
Or maybe I am misunderstanding the question....?
- Carsten
On Oct 20, 2009, at 3:28 AM, Michael Gilbert wrote:
> Hi --
>
> I'm still struggling with this one: My main agenda view has both
> scheduled and deadlined items, but I'm interested in creating a
> custom view that shows only items who have a deadline of today or
> past due. This isn't working for me:
>
> (setq org-agenda-custom-commands
> '(("d" "Due today" agenda ""
> ((org-deadline-warning-days 0)
> (org-agenda-skip-scheduled-if-deadline-is-shown t)
> (org-agenda-skip-function '(org-agenda-skip-entry-if
> 'notdeadline))))
> ))
>
> This one shows all sorts if items that have deadlines in the future,
> displaying them as scheduled. Yes, many items item have both
> timestamps. Suggestions?
>
>
> TIA!
>
>
> -- Michael
>
> P.S. Also, the documentation often lists various settings as
> "examples". I am not an experienced emacs user, so I am curious...
> how do I go about finding comprehensive lists of settings for
> various contexts?
>
>
>
>
> _______________________________________________
> 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
- Carsten
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-10-22 12:43 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-10-20 1:28 agenda with only deadlines? Michael Gilbert
2009-10-22 12:21 ` Carsten Dominik
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.