AutoHotkey Script for text expanding current date and lorem ipsum

When I need to date a file or a meeting note I type in “td” and the “td” – gets replaced with the day’s date and my initials, written backwards to make it easier to list by date:

2020-03-10 APT –

When I type in the word “lorem” it gets replaced with two paragraphs of “lorem Ipsum”. Which is very useful when I am testing typography. Use the code below:

::td::
SendInput %A_YYYY%-%A_MM%-%A_DD% APT -
return

::lorem::
SendInput Lorem ipsum dolor sit amet, ad his essent accusata eloquentiam. Vis et utinam conceptam. In vix impedit intellegebat, quis appetere splendide an duo, ei congue expetendis eum. Saepe eligendi cum eu. Vel mediocrem efficiendi voluptatibus ne, est appellantur reprehendunt ea. {Enter}Nec no eloquentiam instructior voluptatibus. Modo mucius vis id. Tota indoctum pri ut, te mel inermis partiendo, sit corrumpit appellantur ex. Amet sapientem quo id. Vis hinc malorum fabulas no.
return

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.