Files
GP-Tools-AHK/includes/TextExpansions.ahk

81 lines
2.0 KiB
AutoHotkey

;; ---------------------------
;; Text Based Shortcuts
;; ---------------------------
;; cnr. -> Called, no answer at 9:33 AM
;; clm. -> Called, no answer at 9:34 AM. Left message on voicemail
;; msc. -> Hello, I have tried to call you but unfortunately couldn't reach you. I will try once more later on
;; dtt. -> 2022 01 12 -
;; rdt. -> 12/01/2022
;; eld. -> 12/01/2022 \n \n Time: 09:35 (for EOL meds)
;; sig. -> - Signed
;; ftf. -> TCI for F2F assessment, appt given for today.
;; atsp. -> Asked to see patient while visiting another at same residence.
;; pmc. -> Pennygate Medical Centre, 109 Ladies Lane, Hindley, Wigan
;; pmctel. -> 01942 807 500
; ps. -> EPS prescription signed :)
;; Replaces the letters 'cnr' with: Called, no reply <current time>
::cnr.::
FormatTime, CurrentDateTime,, h:mm tt
SendInput Called, no answer at %CurrentDateTime%
return
;; Replaces the letters 'clm' with: Called, left message
::clm.::
FormatTime, CurrentDateTime,, h:mm tt
SendInput Called, no answer at %CurrentDateTime%. Left message on voicemail
return
;; Replaces the letters 'missc' with: Called, left message (for patient message)
::msc.::
FormatTime, CurrentDateTime,, h:mm tt
SendInput Hello, I have tried to call you but unfortunately couldn't reach you. I will try once more later on
return
::dtt.::
FormatTime, CurrentDate,, yyyy MM dd '- '
SendInput %CurrentDate%
return
::rdt.::
FormatTime, CurrentDate,, dd/MM/yyyy
SendInput %CurrentDate%
return
::sig.::
SendInput {Space}- Signed
return
::eld.::
FormatTime, CurrentDate,, dd/MM/yyyy
FormatTime, CurrentTime,, HH:mm
SendInput %CurrentDate%{Enter}{Enter}Time: %CurrentTime%
return
::ftf.::
SendInput TCI for F2F assessment, appt given for today.
return
::atsp.::
SendInput Asked to see patient while visiting another at same residence.
return
::pmc.::
SendInput Pennygate Medical Centre, 109 Ladies Lane, Hindley, Wigan
return
::pmctel.::
SendInput 01942 807 500
return
::ps.::
SendInput EPS prescription signed :)
return