* Stopping "done/cancelled" from showing in agenda view?
@ 2014-06-09 12:44 Sharon Kimble
2014-06-09 13:38 ` Thorsten Jolitz
2014-06-09 14:49 ` Nick Dokos
0 siblings, 2 replies; 5+ messages in thread
From: Sharon Kimble @ 2014-06-09 12:44 UTC (permalink / raw)
To: org-mode
[-- Attachment #1: Type: text/plain, Size: 521 bytes --]
This is probably an easy one to answer, but I can't even think of
how to query google with it. And I can't see how to do it in the org
manual either!
But, how do you stop a "done", or "cancelled" item from appearing in
the agenda view please? Is there some code that will auto-magically
do it for me please?
Thanks
Sharon.
--
A taste of linux = http://www.sharons.org.uk
my git repo = https://bitbucket.org/boudiccas/dots
TGmeds = http://www.tgmeds.org.uk
Debian testing, fluxbox 1.3.5, emacs 24.3.91.1
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 818 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Stopping "done/cancelled" from showing in agenda view?
2014-06-09 12:44 Stopping "done/cancelled" from showing in agenda view? Sharon Kimble
@ 2014-06-09 13:38 ` Thorsten Jolitz
2014-06-09 14:22 ` Sharon Kimble
2014-06-09 14:49 ` Nick Dokos
1 sibling, 1 reply; 5+ messages in thread
From: Thorsten Jolitz @ 2014-06-09 13:38 UTC (permalink / raw)
To: emacs-orgmode
Sharon Kimble <boudiccas@skimble.plus.com> writes:
> This is probably an easy one to answer, but I can't even think of
> how to query google with it. And I can't see how to do it in the org
> manual either!
>
> But, how do you stop a "done", or "cancelled" item from appearing in
> the agenda view please? Is there some code that will auto-magically
> do it for me please?
hmm... should be the default:
,---------------------------------------------------------------------
| C-c a t (org-todo-list)
| Show the global TODO list. This collects the TODO items from all
| agenda files (see Agenda Views) into a single buffer. By
| default, this lists items with a state the is not a DONE state.
`---------------------------------------------------------------------
There are:
,----------------------------
| C-h v org-not-done-keywords
`----------------------------
and
,------------------------
| C-h v org-done-keywords
`------------------------
which are probably nil in your case.
--
cheers,
Thorsten
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Stopping "done/cancelled" from showing in agenda view?
2014-06-09 13:38 ` Thorsten Jolitz
@ 2014-06-09 14:22 ` Sharon Kimble
0 siblings, 0 replies; 5+ messages in thread
From: Sharon Kimble @ 2014-06-09 14:22 UTC (permalink / raw)
To: Thorsten Jolitz; +Cc: emacs-orgmode
[-- Attachment #1: Type: text/plain, Size: 1419 bytes --]
Thorsten Jolitz <tjolitz@gmail.com> writes:
> Sharon Kimble <boudiccas@skimble.plus.com> writes:
>
>> This is probably an easy one to answer, but I can't even think of
>> how to query google with it. And I can't see how to do it in the org
>> manual either!
>>
>> But, how do you stop a "done", or "cancelled" item from appearing in
>> the agenda view please? Is there some code that will auto-magically
>> do it for me please?
>
> hmm... should be the default:
>
> ,---------------------------------------------------------------------
> | C-c a t (org-todo-list)
> | Show the global TODO list. This collects the TODO items from all
> | agenda files (see Agenda Views) into a single buffer. By
> | default, this lists items with a state the is not a DONE state.
> `---------------------------------------------------------------------
>
I do C-c a a which shows the 3 coming weeks and the 1 past week.
> There are:
>
> ,----------------------------
> | C-h v org-not-done-keywords
> `----------------------------
>
> and
>
> ,------------------------
> | C-h v org-done-keywords
> `------------------------
>
> which are probably nil in your case.
Yes, they are.
Sharon.
--
A taste of linux = http://www.sharons.org.uk
my git repo = https://bitbucket.org/boudiccas/dots
TGmeds = http://www.tgmeds.org.uk
Debian testing, fluxbox 1.3.5, emacs 24.3.91.1
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 818 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Stopping "done/cancelled" from showing in agenda view?
2014-06-09 12:44 Stopping "done/cancelled" from showing in agenda view? Sharon Kimble
2014-06-09 13:38 ` Thorsten Jolitz
@ 2014-06-09 14:49 ` Nick Dokos
2014-06-09 15:57 ` Nick Dokos
1 sibling, 1 reply; 5+ messages in thread
From: Nick Dokos @ 2014-06-09 14:49 UTC (permalink / raw)
To: emacs-orgmode
Sharon Kimble <boudiccas@skimble.plus.com> writes:
> This is probably an easy one to answer, but I can't even think of
> how to query google with it. And I can't see how to do it in the org
> manual either!
>
> But, how do you stop a "done", or "cancelled" item from appearing in
> the agenda view please? Is there some code that will auto-magically
> do it for me please?
>
Set org-agenda-skip-scheduled-if-done to t perhaps? And similarly
for org-agenda-skip-deadline-if-done. Not sure whether that will do
anything for CANCELLED though.
BTW, the search I did was within emacs (much more likely to be on
point than a Google search):
C-h v org-agenda--done TAB TAB ...
or when I'm really vague about what I'm looking for
C-h v org-agenda- TAB
I then C-x o to the completion buffer and just use normal emacs
commands to look around.
Nick
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Stopping "done/cancelled" from showing in agenda view?
2014-06-09 14:49 ` Nick Dokos
@ 2014-06-09 15:57 ` Nick Dokos
0 siblings, 0 replies; 5+ messages in thread
From: Nick Dokos @ 2014-06-09 15:57 UTC (permalink / raw)
To: emacs-orgmode
Nick Dokos <ndokos@gmail.com> writes:
> Sharon Kimble <boudiccas@skimble.plus.com> writes:
>
>> This is probably an easy one to answer, but I can't even think of
>> how to query google with it. And I can't see how to do it in the org
>> manual either!
>>
>> But, how do you stop a "done", or "cancelled" item from appearing in
>> the agenda view please? Is there some code that will auto-magically
>> do it for me please?
>>
>
> Set org-agenda-skip-scheduled-if-done to t perhaps? And similarly
> for org-agenda-skip-deadline-if-done. Not sure whether that will do
> anything for CANCELLED though.
>
Assuming that CANCELLED is a DONE state - see
(info "(org) workflow states")
for details - the above should work for CANCELLED as well. E.g.
--8<---------------cut here---------------start------------->8---
#+TODO: TODO | DONE CANCELLED
* TODO foo
SCHEDULED: <2014-06-09 Mon>
* DONE bar
SCHEDULED: <2014-06-09 Mon>
* CANCELLED baz
SCHEDULED: <2014-06-09 Mon>
--8<---------------cut here---------------end--------------->8---
then the agenda shows all three if org-agenda-skip-scheduled-if-done is
nil, but shows only `foo' if it is set to t.
As a more general question, should the default be t for all three of the
org-agenda-skip-*-if-done variables? It seems that most people prefer
that behaviour. Perhaps we have gone around this before, but I didn't
check the archives.
Nick
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2014-06-09 15:57 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-09 12:44 Stopping "done/cancelled" from showing in agenda view? Sharon Kimble
2014-06-09 13:38 ` Thorsten Jolitz
2014-06-09 14:22 ` Sharon Kimble
2014-06-09 14:49 ` Nick Dokos
2014-06-09 15:57 ` Nick Dokos
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.