* How do I change when a new day starts in orgmode?
@ 2010-10-16 16:28 Joseph Buchignani
2010-10-16 19:07 ` Jeff Horn
2010-10-17 5:56 ` Carsten Dominik
0 siblings, 2 replies; 10+ messages in thread
From: Joseph Buchignani @ 2010-10-16 16:28 UTC (permalink / raw)
To: Emacs-orgmode
I have a customization question.
I want to have my habits roll over when I wake up, rather than when
the clock hits 12 AM.
How do I make this happen?
I know I read about it somewhere but I can't find it after determined
Googling and checking the Org manual and Worg.
Thanks,
JB
--
Ignore the following. It is a nonsense sentence that disables Google
ads from displaying next to my emails by triggering sensitive
keywords.
I enjoy the massacre of ads. This sentence will slaughter ads without
a messy bloodbath.
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: How do I change when a new day starts in orgmode?
2010-10-16 16:28 How do I change when a new day starts in orgmode? Joseph Buchignani
@ 2010-10-16 19:07 ` Jeff Horn
2010-10-17 5:56 ` Carsten Dominik
1 sibling, 0 replies; 10+ messages in thread
From: Jeff Horn @ 2010-10-16 19:07 UTC (permalink / raw)
To: Joseph Buchignani; +Cc: Emacs-orgmode
+1. I work late into many nights, and sometimes I go to the gym after
midnight, so this would be helpful for me as well.
On Sat, Oct 16, 2010 at 12:28 PM, Joseph Buchignani
<joseph.buchignani@gmail.com> wrote:
> I have a customization question.
>
> I want to have my habits roll over when I wake up, rather than when
> the clock hits 12 AM.
>
> How do I make this happen?
>
> I know I read about it somewhere but I can't find it after determined
> Googling and checking the Org manual and Worg.
>
> Thanks,
> JB
>
> --
> Ignore the following. It is a nonsense sentence that disables Google
> ads from displaying next to my emails by triggering sensitive
> keywords.
>
> I enjoy the massacre of ads. This sentence will slaughter ads without
> a messy bloodbath.
>
> _______________________________________________
> Emacs-orgmode mailing list
> Please use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>
--
Jeffrey Horn
Graduate Lecturer and PhD Student in Economics
George Mason University
(704) 271-4797
jhorn@gmu.edu
jrhorn424@gmail.com
http://www.failuretorefrain.com/jeff/
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: How do I change when a new day starts in orgmode?
2010-10-16 16:28 How do I change when a new day starts in orgmode? Joseph Buchignani
2010-10-16 19:07 ` Jeff Horn
@ 2010-10-17 5:56 ` Carsten Dominik
2010-10-17 6:26 ` Joseph Buchignani
1 sibling, 1 reply; 10+ messages in thread
From: Carsten Dominik @ 2010-10-17 5:56 UTC (permalink / raw)
To: Joseph Buchignani, John Wiegley; +Cc: Org-mode ml
On Oct 16, 2010, at 6:28 PM, Joseph Buchignani wrote:
> I have a customization question.
>
> I want to have my habits roll over when I wake up, rather than when
> the clock hits 12 AM.
>
> How do I make this happen?
We do have a variable `org-extend-today-until' which could be used
also for this purpose. But it is likely that this does not yet
work for the habits. Patch welcome!
- Carsten
>
> I know I read about it somewhere but I can't find it after determined
> Googling and checking the Org manual and Worg.
>
> Thanks,
> JB
>
> --
> Ignore the following. It is a nonsense sentence that disables Google
> ads from displaying next to my emails by triggering sensitive
> keywords.
>
> I enjoy the massacre of ads. This sentence will slaughter ads without
> a messy bloodbath.
>
> _______________________________________________
> Emacs-orgmode mailing list
> Please use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: How do I change when a new day starts in orgmode?
2010-10-17 5:56 ` Carsten Dominik
@ 2010-10-17 6:26 ` Joseph Buchignani
2010-10-17 6:48 ` Carsten Dominik
2010-10-18 5:39 ` Jeff Horn
0 siblings, 2 replies; 10+ messages in thread
From: Joseph Buchignani @ 2010-10-17 6:26 UTC (permalink / raw)
To: Carsten Dominik; +Cc: John Wiegley, Org-mode ml
Worked like a charm, and it appears to be habit compatible.
The code was
;; align my nightowl tendencies with org dating
(setq org-extend-today-until 7)
in my .emacs
That sets the day rollover at 7 am. To set the day rollover at 4 pm,
you would change the 7 to 16.
Thanks,
JB
On Sun, Oct 17, 2010 at 1:56 PM, Carsten Dominik
<carsten.dominik@gmail.com> wrote:
>
> On Oct 16, 2010, at 6:28 PM, Joseph Buchignani wrote:
>
>> I have a customization question.
>>
>> I want to have my habits roll over when I wake up, rather than when
>> the clock hits 12 AM.
>>
>> How do I make this happen?
>
> We do have a variable `org-extend-today-until' which could be used
> also for this purpose. But it is likely that this does not yet
> work for the habits. Patch welcome!
>
> - Carsten
>
>>
>> I know I read about it somewhere but I can't find it after determined
>> Googling and checking the Org manual and Worg.
>>
>> Thanks,
>> JB
>>
>> --
>> Ignore the following. It is a nonsense sentence that disables Google
>> ads from displaying next to my emails by triggering sensitive
>> keywords.
>>
>> I enjoy the massacre of ads. This sentence will slaughter ads without
>> a messy bloodbath.
>>
>> _______________________________________________
>> Emacs-orgmode mailing list
>> Please use `Reply All' to send replies to the list.
>> Emacs-orgmode@gnu.org
>> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>
>
--
Ignore the following. It is a nonsense sentence that disables Google
ads from displaying next to my emails by triggering sensitive
keywords.
I enjoy the massacre of ads. This sentence will slaughter ads without
a messy bloodbath.
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: How do I change when a new day starts in orgmode?
2010-10-17 6:26 ` Joseph Buchignani
@ 2010-10-17 6:48 ` Carsten Dominik
2010-10-17 6:48 ` Carsten Dominik
2010-10-20 12:05 ` Matt Lundin
2010-10-18 5:39 ` Jeff Horn
1 sibling, 2 replies; 10+ messages in thread
From: Carsten Dominik @ 2010-10-17 6:48 UTC (permalink / raw)
To: Joseph Buchignani; +Cc: John Wiegley, Matt Lundin, Org-mode ml
Hi,
maybe it would be good to construct a FAQ around org-extend-today-until.
This is actually a quite usable feature.
- Carsten
On Oct 17, 2010, at 8:26 AM, Joseph Buchignani wrote:
> Worked like a charm, and it appears to be habit compatible.
>
> The code was
>
> ;; align my nightowl tendencies with org dating
> (setq org-extend-today-until 7)
>
> in my .emacs
>
> That sets the day rollover at 7 am. To set the day rollover at 4 pm,
> you would change the 7 to 16.
>
> Thanks,
> JB
>
> On Sun, Oct 17, 2010 at 1:56 PM, Carsten Dominik
> <carsten.dominik@gmail.com> wrote:
>>
>> On Oct 16, 2010, at 6:28 PM, Joseph Buchignani wrote:
>>
>>> I have a customization question.
>>>
>>> I want to have my habits roll over when I wake up, rather than when
>>> the clock hits 12 AM.
>>>
>>> How do I make this happen?
>>
>> We do have a variable `org-extend-today-until' which could be used
>> also for this purpose. But it is likely that this does not yet
>> work for the habits. Patch welcome!
>>
>> - Carsten
>>
>>>
>>> I know I read about it somewhere but I can't find it after
>>> determined
>>> Googling and checking the Org manual and Worg.
>>>
>>> Thanks,
>>> JB
>>>
>>> --
>>> Ignore the following. It is a nonsense sentence that disables Google
>>> ads from displaying next to my emails by triggering sensitive
>>> keywords.
>>>
>>> I enjoy the massacre of ads. This sentence will slaughter ads
>>> without
>>> a messy bloodbath.
>>>
>>> _______________________________________________
>>> Emacs-orgmode mailing list
>>> Please use `Reply All' to send replies to the list.
>>> Emacs-orgmode@gnu.org
>>> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>>
>>
>
>
>
> --
> Ignore the following. It is a nonsense sentence that disables Google
> ads from displaying next to my emails by triggering sensitive
> keywords.
>
> I enjoy the massacre of ads. This sentence will slaughter ads without
> a messy bloodbath.
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: How do I change when a new day starts in orgmode?
2010-10-17 6:48 ` Carsten Dominik
@ 2010-10-17 6:48 ` Carsten Dominik
2010-10-20 12:05 ` Matt Lundin
1 sibling, 0 replies; 10+ messages in thread
From: Carsten Dominik @ 2010-10-17 6:48 UTC (permalink / raw)
To: Carsten Dominik; +Cc: John Wiegley, Matt Lundin, Org-mode ml, Joseph Buchignani
On Oct 17, 2010, at 8:48 AM, Carsten Dominik wrote:
> Hi,
>
> maybe it would be good to construct a FAQ around org-extend-today-
> until.
I mean a single FAQ entry.
> This is actually a quite usable feature.
>
> - Carsten
>
> On Oct 17, 2010, at 8:26 AM, Joseph Buchignani wrote:
>
>> Worked like a charm, and it appears to be habit compatible.
>>
>> The code was
>>
>> ;; align my nightowl tendencies with org dating
>> (setq org-extend-today-until 7)
>>
>> in my .emacs
>>
>> That sets the day rollover at 7 am. To set the day rollover at 4 pm,
>> you would change the 7 to 16.
>>
>> Thanks,
>> JB
>>
>> On Sun, Oct 17, 2010 at 1:56 PM, Carsten Dominik
>> <carsten.dominik@gmail.com> wrote:
>>>
>>> On Oct 16, 2010, at 6:28 PM, Joseph Buchignani wrote:
>>>
>>>> I have a customization question.
>>>>
>>>> I want to have my habits roll over when I wake up, rather than when
>>>> the clock hits 12 AM.
>>>>
>>>> How do I make this happen?
>>>
>>> We do have a variable `org-extend-today-until' which could be used
>>> also for this purpose. But it is likely that this does not yet
>>> work for the habits. Patch welcome!
>>>
>>> - Carsten
>>>
>>>>
>>>> I know I read about it somewhere but I can't find it after
>>>> determined
>>>> Googling and checking the Org manual and Worg.
>>>>
>>>> Thanks,
>>>> JB
>>>>
>>>> --
>>>> Ignore the following. It is a nonsense sentence that disables
>>>> Google
>>>> ads from displaying next to my emails by triggering sensitive
>>>> keywords.
>>>>
>>>> I enjoy the massacre of ads. This sentence will slaughter ads
>>>> without
>>>> a messy bloodbath.
>>>>
>>>> _______________________________________________
>>>> Emacs-orgmode mailing list
>>>> Please use `Reply All' to send replies to the list.
>>>> Emacs-orgmode@gnu.org
>>>> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>>>
>>>
>>
>>
>>
>> --
>> Ignore the following. It is a nonsense sentence that disables Google
>> ads from displaying next to my emails by triggering sensitive
>> keywords.
>>
>> I enjoy the massacre of ads. This sentence will slaughter ads without
>> a messy bloodbath.
>
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: How do I change when a new day starts in orgmode?
2010-10-17 6:26 ` Joseph Buchignani
2010-10-17 6:48 ` Carsten Dominik
@ 2010-10-18 5:39 ` Jeff Horn
1 sibling, 0 replies; 10+ messages in thread
From: Jeff Horn @ 2010-10-18 5:39 UTC (permalink / raw)
To: Joseph Buchignani; +Cc: John Wiegley, Org-mode ml, Carsten Dominik
I'm wondering if I did something wrong. I copied the code into my init
file, but I just marked a habit as complete (it is currently just past
midnight Monday morning, but I consider this Sunday per our
discussion) and the habit was rescheduled for Tuesday.
Jeff
On Sun, Oct 17, 2010 at 2:26 AM, Joseph Buchignani
<joseph.buchignani@gmail.com> wrote:
> Worked like a charm, and it appears to be habit compatible.
>
> The code was
>
> ;; align my nightowl tendencies with org dating
> (setq org-extend-today-until 7)
>
> in my .emacs
>
> That sets the day rollover at 7 am. To set the day rollover at 4 pm,
> you would change the 7 to 16.
>
> Thanks,
> JB
>
> On Sun, Oct 17, 2010 at 1:56 PM, Carsten Dominik
> <carsten.dominik@gmail.com> wrote:
>>
>> On Oct 16, 2010, at 6:28 PM, Joseph Buchignani wrote:
>>
>>> I have a customization question.
>>>
>>> I want to have my habits roll over when I wake up, rather than when
>>> the clock hits 12 AM.
>>>
>>> How do I make this happen?
>>
>> We do have a variable `org-extend-today-until' which could be used
>> also for this purpose. But it is likely that this does not yet
>> work for the habits. Patch welcome!
>>
>> - Carsten
>>
>>>
>>> I know I read about it somewhere but I can't find it after determined
>>> Googling and checking the Org manual and Worg.
>>>
>>> Thanks,
>>> JB
>>>
>>> --
>>> Ignore the following. It is a nonsense sentence that disables Google
>>> ads from displaying next to my emails by triggering sensitive
>>> keywords.
>>>
>>> I enjoy the massacre of ads. This sentence will slaughter ads without
>>> a messy bloodbath.
>>>
>>> _______________________________________________
>>> Emacs-orgmode mailing list
>>> Please use `Reply All' to send replies to the list.
>>> Emacs-orgmode@gnu.org
>>> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>>
>>
>
>
>
> --
> Ignore the following. It is a nonsense sentence that disables Google
> ads from displaying next to my emails by triggering sensitive
> keywords.
>
> I enjoy the massacre of ads. This sentence will slaughter ads without
> a messy bloodbath.
>
> _______________________________________________
> Emacs-orgmode mailing list
> Please use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>
--
Jeffrey Horn
Graduate Lecturer and PhD Student in Economics
George Mason University
(704) 271-4797
jhorn@gmu.edu
jrhorn424@gmail.com
http://www.failuretorefrain.com/jeff/
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: How do I change when a new day starts in orgmode?
2010-10-17 6:48 ` Carsten Dominik
2010-10-17 6:48 ` Carsten Dominik
@ 2010-10-20 12:05 ` Matt Lundin
2010-10-20 12:24 ` Sébastien Vauban
2010-10-22 15:59 ` Carsten Dominik
1 sibling, 2 replies; 10+ messages in thread
From: Matt Lundin @ 2010-10-20 12:05 UTC (permalink / raw)
To: Carsten Dominik; +Cc: Org-mode ml
Carsten Dominik <carsten.dominik@gmail.com> writes:
> Hi,
>
> maybe it would be good to construct a FAQ around org-extend-today-until.
> This is actually a quite usable feature.
>
Done. Or I should say:
* DONE FAQ on org-extend-until-today
CLOSED: [2010-10-20 Wed 08:04]
:)
- Matt
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: How do I change when a new day starts in orgmode?
2010-10-20 12:05 ` Matt Lundin
@ 2010-10-20 12:24 ` Sébastien Vauban
2010-10-22 15:59 ` Carsten Dominik
1 sibling, 0 replies; 10+ messages in thread
From: Sébastien Vauban @ 2010-10-20 12:24 UTC (permalink / raw)
To: emacs-orgmode-mXXj517/zsQ
Hi Matt,
Matt Lundin wrote:
> Carsten Dominik <carsten.dominik-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> writes:
>> maybe it would be good to construct a FAQ around org-extend-today-until.
>> This is actually a quite usable feature.
>
> Done. Or I should say:
>
> * DONE FAQ on org-extend-until-today
> CLOSED: [2010-10-20 Wed 08:04]
Or should you say:
#+begin_src org
,* DONE FAQ on =org-extend-until-today=
, CLOSED: [2010-10-20 Wed 08:04]
#+end_src
;-)
Best regards,
Seb
--
Sébastien Vauban
_______________________________________________
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode-mXXj517/zsQ@public.gmane.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: How do I change when a new day starts in orgmode?
2010-10-20 12:05 ` Matt Lundin
2010-10-20 12:24 ` Sébastien Vauban
@ 2010-10-22 15:59 ` Carsten Dominik
1 sibling, 0 replies; 10+ messages in thread
From: Carsten Dominik @ 2010-10-22 15:59 UTC (permalink / raw)
To: Matt Lundin; +Cc: Org-mode ml
Dear Matt,
thank you for reacting so reliably whenever I put you
out these little requests.
- Carsten
On Oct 20, 2010, at 2:05 PM, Matt Lundin wrote:
> Carsten Dominik <carsten.dominik@gmail.com> writes:
>
>> Hi,
>>
>> maybe it would be good to construct a FAQ around org-extend-today-
>> until.
>> This is actually a quite usable feature.
>>
>
> Done. Or I should say:
>
> * DONE FAQ on org-extend-until-today
> CLOSED: [2010-10-20 Wed 08:04]
>
> :)
>
> - Matt
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2010-10-22 17:20 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-10-16 16:28 How do I change when a new day starts in orgmode? Joseph Buchignani
2010-10-16 19:07 ` Jeff Horn
2010-10-17 5:56 ` Carsten Dominik
2010-10-17 6:26 ` Joseph Buchignani
2010-10-17 6:48 ` Carsten Dominik
2010-10-17 6:48 ` Carsten Dominik
2010-10-20 12:05 ` Matt Lundin
2010-10-20 12:24 ` Sébastien Vauban
2010-10-22 15:59 ` Carsten Dominik
2010-10-18 5:39 ` Jeff Horn
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).