AutoHotkey: Insert Text

By Xah Lee. Date: . Last updated: .

Insert Text

#Requires AutoHotkey v2.0
; pressing F9 to insert your signature
F9::Send "Best,{Enter}{Enter} Mary Jane"

Insert Emoji

#Requires AutoHotkey v2.0
; pressing F9 to insert emoji
F9::Send "🤗"

Insert Today's Date

#Requires AutoHotkey v2.0
; F9 to insert date in YYYY-MM-DD format
F9::
{
currentDate := FormatTime(A_Now, "yyyy-MM-dd")
Send(currentDate)
}