* How not to show repetitive tasks in the TODO items of agenda view
@ 2014-01-23 11:03 Chaitanya Krishna
2014-01-23 14:14 ` Alexander Baier
2014-01-23 23:46 ` Pete Ley
0 siblings, 2 replies; 3+ messages in thread
From: Chaitanya Krishna @ 2014-01-23 11:03 UTC (permalink / raw)
To: emacs-orgmode
[-- Attachment #1: Type: text/plain, Size: 538 bytes --]
Hello there,
Maybe someone has already come across this problem. Any help is appreciated.
I have some repetitive tasks which I schedule using the deadline approach.
TODO Search for house
DEADLINE: <2014-01-26 Sun +1w>
* Birthdays
TODO Abc Abc
DEADLINE: <2014-01-26 Sun +1y>
The problem is that all the birthdays and repetitive tasks are cluttering
my view in agenda TODO items (C-c a t).
Is it possible to make these items show up only in the agenda view (C-c a
a) and not in the TODO items list (C-c a t)
Best regards,
Chai
--
42
[-- Attachment #2: Type: text/html, Size: 818 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: How not to show repetitive tasks in the TODO items of agenda view
2014-01-23 11:03 How not to show repetitive tasks in the TODO items of agenda view Chaitanya Krishna
@ 2014-01-23 14:14 ` Alexander Baier
2014-01-23 23:46 ` Pete Ley
1 sibling, 0 replies; 3+ messages in thread
From: Alexander Baier @ 2014-01-23 14:14 UTC (permalink / raw)
To: Chaitanya Krishna; +Cc: emacs-orgmode
On 2014-01-23 12:03 Chaitanya Krishna wrote:
> * Birthdays
> TODO Abc Abc
> DEADLINE: <2014-01-26 Sun +1y>
>
> Is it possible to make these items show up only in the agenda view (C-c a
> a) and not in the TODO items list (C-c a t)
You could just take a normal active timestamp instead of a DEADLINE for
the birthdays. Something like this:
* Birthdays
TODO Abc Abc
<2014-01-26 Sun +1y>
HTH,
--
Alexander Baier
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: How not to show repetitive tasks in the TODO items of agenda view
2014-01-23 11:03 How not to show repetitive tasks in the TODO items of agenda view Chaitanya Krishna
2014-01-23 14:14 ` Alexander Baier
@ 2014-01-23 23:46 ` Pete Ley
1 sibling, 0 replies; 3+ messages in thread
From: Pete Ley @ 2014-01-23 23:46 UTC (permalink / raw)
To: Chaitanya Krishna; +Cc: emacs-orgmode
> The problem is that all the birthdays and repetitive tasks are cluttering my
> view in agenda TODO items (C-c a t).
>
> Is it possible to make these items show up only in the agenda view (C-c a a)
> and not in the TODO items list (C-c a t)
You could try define a custom agenda command to show all TODO items
except those with deadlines.
(setq org-agenda-custom-commands
'(("t" "TODOs without deadlines" alltodo ""
((org-agenda-skip-function '(org-agenda-skip-entry-if 'deadline))))))
Try that for a start.
Pete
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-01-23 23:46 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-23 11:03 How not to show repetitive tasks in the TODO items of agenda view Chaitanya Krishna
2014-01-23 14:14 ` Alexander Baier
2014-01-23 23:46 ` Pete Ley
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).