is there any way to insert the current date within task notes using keyboard shortcuts??

179 views
Skip to first unread message

Julen Juaristi

unread,
Jul 25, 2018, 6:28:20 AM7/25/18
to MyLifeOrganized
when reviewing a task within a team, a date stamp  within the notes gives me  a very important information. Many TO-DOs  stamp the date and time automatically when ever there is a comment done.

grizz

unread,
Jul 25, 2018, 1:26:06 PM7/25/18
to MyLifeOrganized
You can use autohotkey

ex if you type ]d it expands to dd.MM.yyyy r. HH:mm

::]d::
FormatTime, CurrentDateTime,, dd.MM.yyyy r. HH:mm
SendInput %CurrentDateTime%
return 

Stéph

unread,
Jul 27, 2018, 11:38:39 AM7/27/18
to MyLifeOrganized
Hello Julen,

I've got good news for you: Insert Date, Insert Time or Insert Date/Time are all hotkeys (which you can configure via the Tools menu -> Options -> Hotkeys). I have Ctrl-D set of date and I use it all the time for date-stamping anything I add to my notes.

Regards,
Stéphane

Julen Juaristi

unread,
Aug 1, 2018, 2:30:22 AM8/1/18
to MyLifeOrganized
thank you very much!!! this will help me a lot.

lewy

unread,
May 4, 2019, 3:42:27 AM5/4/19
to MyLifeOrganized
Just press F4.

Mike McCallister

unread,
May 6, 2019, 9:22:28 AM5/6/19
to mylifeo...@googlegroups.com
Actually, F4 gives you the date and time. Ctrl+Shift+T gives you just the date. I use these all the time!

Cheers,
Mike McCallister

-----Original Message-----
From: mylifeo...@googlegroups.com <mylifeo...@googlegroups.com> On Behalf Of lewy
Sent: Friday, May 03, 2019 8:34 PM
To: MyLifeOrganized <mylifeo...@googlegroups.com>
Subject: [External] [MLO] is there any way to insert the current date within task notes using keyboard shortcuts??

Just press F4.

--
You received this message because you are subscribed to the Google Groups "MyLifeOrganized" group.
To unsubscribe from this group and stop receiving emails from it, send an email to mylifeorganiz...@googlegroups.com.
To post to this group, send email to mylifeo...@googlegroups.com.
Visit this group at https://groups.google.com/group/mylifeorganized.
To view this discussion on the web visit https://groups.google.com/d/msgid/mylifeorganized/a717ff07-9298-4c56-a9f7-d2ec8a719130%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Stéph

unread,
May 7, 2019, 3:38:00 AM5/7/19
to MyLifeOrganized
Those two shortcuts are customisable to whatever key combination you want, under "Tools - Options - Hotkeys". I think the default for date is Ctrl+Shift+D and time is Ctrl+Shift+T, while date and time is F4.


On Monday, 6 May 2019 14:22:28 UTC+1, Mike McCallister wrote:
Actually, F4 gives you the date and time. Ctrl+Shift+T gives you just the date. I use these all the time!

Cheers,
Mike McCallister

-----Original Message-----
From: mylifeo...@googlegroups.com <mylifeo...@googlegroups.com> On Behalf Of lewy
Sent: Friday, May 03, 2019 8:34 PM
To: MyLifeOrganized <mylifeo...@googlegroups.com>
Subject: [External] [MLO] is there any way to insert the current date within task notes using keyboard shortcuts??

Just press F4.

--
You received this message because you are subscribed to the Google Groups "MyLifeOrganized" group.
To unsubscribe from this group and stop receiving emails from it, send an email to mylifeo...@googlegroups.com.

Huw Evans

unread,
Jul 12, 2019, 2:52:53 AM7/12/19
to MyLifeOrganized
This is great - any way to set the format for the date that is inserted with this shortcut?

André Bonhôte

unread,
Jul 12, 2019, 6:44:01 AM7/12/19
to MyLifeOrganized
I received the forum summary a few minutes ago, your question was mentioned there. As I'm not using F4 or CTRL-SHIFT-T, my way of doing it came to my mind: Autohotkey. I have three "shortcuts":

.tod

which will be replaced by the current date, like 20190712

.now

which adds the time, 20190712_120835 

and finally

.yes

which is, of course, yesterday. 20190711.

; - Insert Date & time to be used to rename a file
:*:.now::
FormatTime, xx,, yyyyMMdd_HHmmss
SendInput, %xx%
Return

; - Insert year + week
:*:.week::
FormatTime, xx,, YWeek
SendInput, %xx%
Return

; - Insert Date
::.tod::
FormatTime, xx,, yyyyMMdd
SendInput, %xx%
Return

::.yes::
time := A_Now
time += -1, Days
FormatTime, xx, %time%, yyyyMMdd
SendInput, %xx%
Return



Ok, there's a fourth one which adds year + week, like 201928.

You can of course format the time as you wish, well described on the AHK website.

Sidenote: The reason I have these replacements is mainly due to my file naming convention. I normally place the current date in front of each file I create.

Hope that helps :-)

Cheers

André

Huw Evans

unread,
Jul 15, 2019, 3:56:42 AM7/15/19
to MyLifeOrganized
Thanks! Great info

Andrei Bacean

unread,
Jul 16, 2019, 1:34:40 AM7/16/19
to mylifeo...@googlegroups.com
hi
here is an autohotkey script which iserts date after pressing the keybord shortcut Ctrl+F9.
^F9::
   
FormatTime, CurrentDateTime,, yyyy.MM.dd
   
SendInput %CurrentDateTime%
return

You can substitute the Ctrl+F9 (^F9) with you own shortcut.
Here is a brief introduction to shortcut naming used by autohotkey.
Good luck!
Br
Andrew

ps The code has been updated, first version contained a typo.




понедельник, 15 июля 2019 г., 10:56:42 UTC+3 пользователь Huw Evans написал:
Thanks!  Great info

Andrei Bacean

unread,
Jul 16, 2019, 1:37:58 AM7/16/19
to MyLifeOrganized
ups, forgot to delete an unnecessary line from the code. Here is the correct one:
^F9::
   
FormatTime, CurrentDateTime,, yyyy.MM.dd
   
SendInput %CurrentDateTime%
return



вторник, 16 июля 2019 г., 8:34:40 UTC+3 пользователь Andrei Bacean написал:

André Bonhôte

unread,
Jul 16, 2019, 2:49:26 AM7/16/19
to mylifeo...@googlegroups.com

Autohotkey is about the first thing I install on a new computer 😉

Tue Jul 16 07:38:02 GMT+02:00 2019 Andrei Bacean <bacean...@gmail.com>:

--
You received this message because you are subscribed to a topic in the Google Groups "MyLifeOrganized" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/mylifeorganized/bizKRczzgYs/unsubscribe.
To unsubscribe from this group and all its topics, send an email to mylifeorganiz...@googlegroups.com.

To post to this group, send email to mylifeo...@googlegroups.com.
Visit this group at https://groups.google.com/group/mylifeorganized.
To view this discussion on the web visit https://groups.google.com/d/msgid/mylifeorganized/a23eaafd-60e8-42c1-981c-6ecc8de3329b%40googlegroups.com.

Huw Evans

unread,
Jul 16, 2019, 11:02:35 PM7/16/19
to MyLifeOrganized
Thanks again Andrei - unfortunately my work computer will not allow me to install, but I did find a similar one called Phrase Express and have just set  that up.
To unsubscribe from this group and all its topics, send an email to mylifeo...@googlegroups.com.

Andrei Bacean

unread,
Jul 17, 2019, 7:22:31 AM7/17/19
to MyLifeOrganized
Hi
Maybe the portable version will help
https://portableapps.com/node/39299

First, install it on a different computer, then move it to the work pc.

Good luck
Andrew

Reply all
Reply to author
Forward
0 new messages