* FR: org-agenda-skip-deadline-if-scheduled @ 2009-11-02 13:40 Adam Spiers 2009-11-02 14:21 ` Adam Spiers 2009-11-03 6:21 ` Carsten Dominik 0 siblings, 2 replies; 5+ messages in thread From: Adam Spiers @ 2009-11-02 13:40 UTC (permalink / raw) To: org-mode mailing list Hi all, Quick feature suggestion: I just discovered `org-agenda-skip-scheduled-if-deadline-is-shown', which is a very nice option, but I actually want the opposite, i.e. `org-agenda-skip-deadline-if-scheduled'. The reason for this is that if I have missed a deadline (sadly all too common), I want to be able to schedule it for tomorrow and not have it show in today's agenda, otherwise when planning today's activities, the total effort estimate for today gets over-inflated by the deadlined task. If `org-agenda-skip-if' supported boolean AND of the conditions then I could have achieved this by customising all my agenda views, but a global setting would be more convenient. Thanks, Adam ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: FR: org-agenda-skip-deadline-if-scheduled 2009-11-02 13:40 FR: org-agenda-skip-deadline-if-scheduled Adam Spiers @ 2009-11-02 14:21 ` Adam Spiers 2009-11-03 6:21 ` Carsten Dominik 1 sibling, 0 replies; 5+ messages in thread From: Adam Spiers @ 2009-11-02 14:21 UTC (permalink / raw) To: org-mode mailing list Adam Spiers (orgmode@adamspiers.org) wrote: > Hi all, > > Quick feature suggestion: > > I just discovered `org-agenda-skip-scheduled-if-deadline-is-shown', > which is a very nice option, but I actually want the opposite, i.e. > `org-agenda-skip-deadline-if-scheduled'. The reason for this is that > if I have missed a deadline (sadly all too common), I want to be able > to schedule it for tomorrow and not have it show in today's agenda, > otherwise when planning today's activities, the total effort estimate > for today gets over-inflated by the deadlined task. I just realised that this also applies not just to missed deadlines but also upcoming ones. In both cases, marking as scheduled indicates that the deadline is being managed correctly and can safely be excluded from the agenda view for today to avoid clutter and the impact on today's time estimates. ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: FR: org-agenda-skip-deadline-if-scheduled 2009-11-02 13:40 FR: org-agenda-skip-deadline-if-scheduled Adam Spiers 2009-11-02 14:21 ` Adam Spiers @ 2009-11-03 6:21 ` Carsten Dominik 2009-11-03 10:49 ` Adam Spiers 1 sibling, 1 reply; 5+ messages in thread From: Carsten Dominik @ 2009-11-03 6:21 UTC (permalink / raw) To: Adam Spiers; +Cc: org-mode mailing list This is, unfortunately, hard because it depends on the sequence in which scheduled and deadline are collected. - Carsten On Nov 2, 2009, at 2:40 PM, Adam Spiers wrote: > Hi all, > > Quick feature suggestion: > > I just discovered `org-agenda-skip-scheduled-if-deadline-is-shown', > which is a very nice option, but I actually want the opposite, i.e. > `org-agenda-skip-deadline-if-scheduled'. The reason for this is that > if I have missed a deadline (sadly all too common), I want to be able > to schedule it for tomorrow and not have it show in today's agenda, > otherwise when planning today's activities, the total effort estimate > for today gets over-inflated by the deadlined task. > > If `org-agenda-skip-if' supported boolean AND of the conditions then I > could have achieved this by customising all my agenda views, but a > global setting would be more convenient. > > Thanks, > Adam > > > _______________________________________________ > 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] 5+ messages in thread
* Re: FR: org-agenda-skip-deadline-if-scheduled 2009-11-03 6:21 ` Carsten Dominik @ 2009-11-03 10:49 ` Adam Spiers 2009-11-03 17:01 ` Carsten Dominik 0 siblings, 1 reply; 5+ messages in thread From: Adam Spiers @ 2009-11-03 10:49 UTC (permalink / raw) To: org-mode mailing list Damn :-) In that case, would it be easier to support boolean AND in `org-agenda-skip-if' or in a similarly named function? Or is there another workaround you can think of? Thanks! On Tue, Nov 03, 2009 at 07:21:15AM +0100, Carsten Dominik wrote: > This is, unfortunately, hard because it depends on the sequence > in which scheduled and deadline are collected. > > - Carsten > > On Nov 2, 2009, at 2:40 PM, Adam Spiers wrote: > > >Hi all, > > > >Quick feature suggestion: > > > >I just discovered `org-agenda-skip-scheduled-if-deadline-is-shown', > >which is a very nice option, but I actually want the opposite, i.e. > >`org-agenda-skip-deadline-if-scheduled'. The reason for this is that > >if I have missed a deadline (sadly all too common), I want to be able > >to schedule it for tomorrow and not have it show in today's agenda, > >otherwise when planning today's activities, the total effort estimate > >for today gets over-inflated by the deadlined task. > > > >If `org-agenda-skip-if' supported boolean AND of the conditions then I > >could have achieved this by customising all my agenda views, but a > >global setting would be more convenient. > > > >Thanks, > >Adam ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: FR: org-agenda-skip-deadline-if-scheduled 2009-11-03 10:49 ` Adam Spiers @ 2009-11-03 17:01 ` Carsten Dominik 0 siblings, 0 replies; 5+ messages in thread From: Carsten Dominik @ 2009-11-03 17:01 UTC (permalink / raw) To: Adam Spiers; +Cc: org-mode mailing list On Nov 3, 2009, at 11:49 AM, Adam Spiers wrote: > Damn :-) In that case, would it be easier to support boolean AND in > `org-agenda-skip-if' or in a similarly named function? Or is there > another workaround you can think of? Well, the easiest work-round is to accept that a deadline visible in your agenda is, in a way, equivalent to having it scheduled for that day. There is no Boolean END in the skipper, but you can write your own function that calls various instances of the skipper and combine the results with AND. HTH - Carsten > > Thanks! > > On Tue, Nov 03, 2009 at 07:21:15AM +0100, Carsten Dominik wrote: >> This is, unfortunately, hard because it depends on the sequence >> in which scheduled and deadline are collected. >> >> - Carsten >> >> On Nov 2, 2009, at 2:40 PM, Adam Spiers wrote: >> >>> Hi all, >>> >>> Quick feature suggestion: >>> >>> I just discovered `org-agenda-skip-scheduled-if-deadline-is-shown', >>> which is a very nice option, but I actually want the opposite, i.e. >>> `org-agenda-skip-deadline-if-scheduled'. The reason for this is >>> that >>> if I have missed a deadline (sadly all too common), I want to be >>> able >>> to schedule it for tomorrow and not have it show in today's agenda, >>> otherwise when planning today's activities, the total effort >>> estimate >>> for today gets over-inflated by the deadlined task. >>> >>> If `org-agenda-skip-if' supported boolean AND of the conditions >>> then I >>> could have achieved this by customising all my agenda views, but a >>> global setting would be more convenient. >>> >>> Thanks, >>> Adam > > > _______________________________________________ > 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] 5+ messages in thread
end of thread, other threads:[~2009-11-03 17:46 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2009-11-02 13:40 FR: org-agenda-skip-deadline-if-scheduled Adam Spiers 2009-11-02 14:21 ` Adam Spiers 2009-11-03 6:21 ` Carsten Dominik 2009-11-03 10:49 ` Adam Spiers 2009-11-03 17:01 ` Carsten Dominik
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).