-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTextReplacement_Work.ahk
137 lines (120 loc) · 3 KB
/
TextReplacement_Work.ahk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
SetTitleMatchMode, 2 ; Match anywhere in title
#IfWinNotActive ,SQL Server Management Studio
; This file contains assorted hotstrings for text replacement
; Short helper abbreviation expansions
:c:atm::at the moment
:c:Tks::Thanks
:c:tks::thanks
:c:Hth::Hope that helps
:c:hth::hope that helps
:c:Ymmv::Your mileage may vary
:c:ymmv::your mileage may vary
:c:fyi::FYI
:c:/ccare::Communicare
; Verbose timestamp
:c:/dtv::
FormatTime, xx,, dd MMM yyyy ; This is one type of the date format
FormatTime, zz,, hh:mm:ss tt ; This is one type of the time format
SendInput, %xx% %zz%
return
; Compact timestamp
:c:/dtc::
FormatTime, xx,, yyyy-MM-dd ; This is one type of the date format
FormatTime, zz,, hh:mm ; This is one type of the time format
SendInput, %xx% %zz%
return
; Verbose date
:c:/dv::
FormatTime, xx,, dd MMM yyyy ; This is one type of the date format
SendInput, %xx%
return
; Day and date
:c:/dd::
FormatTime, xx,, dddd yyyy-MM-dd
SendInput, %xx%
return
; Compact date
:c:/dc::
FormatTime, xx,, yyyy-MM-dd ; This is one type of the date format
SendInput, %xx%
return
; time
:c:/t::
FormatTime, zz,, hh:mm tt ; This is one type of the time format
SendInput, %zz%
return
; Star Ratings
:c:5stars::
Send {U+2605}{U+2605}{U+2605}{U+2605}{U+2605}
return
:c:4stars::
Send {U+2605}{U+2605}{U+2605}{U+2605}{U+2606}
return
:c:3stars::
Send {U+2605}{U+2605}{U+2605}{U+2606}{U+2606}
return
:c:2stars::
Send {U+2605}{U+2605}{U+2606}{U+2606}{U+2606}
return
:c:1stars::
Send {U+2605}{U+2606}{U+2606}{U+2606}{U+2606}
return
:c:0stars::
Send {U+2606}{U+2606}{U+2606}{U+2606}{U+2606}
return
; Icons for Note Taking
:*:/check::✔
:*:/meet::📞
:*:/note::✍
:*:/doc::📄
:*:/bug::🐛
:*:/clip::📋
; Unicode Shortcuts
:c:/heart::{U+2665}
:c:/star::{U+2605}
:c:/skull::{U+2620}
:c:/tick::✓
:c:/cross::✘
:c:/triangleup::▲
:c:/triangledown::▼
:c:/triangleleft::◀
:c:/triangleright::▶
:c*:/uparrow::↑
:c*:/downarrow::↓
:c*:/rightarrow::→
:c*:/leftarrow::←
;Work related
:c:TD::TODO:
;:c:patchtemplate::Release Version: 3.1.1{ENTER}Urgency: Next Build{ENTER}Reviewed For Patching By: {ENTER}{ENTER}Description of the change:{ENTER}--------------------------{ENTER}{ENTER}Files:{ENTER}------{ENTER}{ENTER}Target Testing:{ENTER}---------------
:c:pacs::PACS
;:c*:karisma ::Karisma{Space}
:c*:hl7 ::HL7{Space}
;:c:api::API
;:c:ceo::CEO
;:c:url::URL
;:c:urls::URLs
;:c:csv::CSV
;:c:sdk::SDK
;:C:sms::SMS
;:c*:k/::Karisma.
;:c*:amz::Adv.Money.Zero
:c*:hbcis::HBCIS
:c:mhr::MHR
:c:mhrx::My Health Record
:c:@@::[email protected]
:c:/cic::Can I call?
:c:/eyes::👀
:c:/ell::…
; Shortcuts for ResophNotes
;:cr*:;sql::sql -
;:cr*:;td::todo -
:*:]d:: ; This hotstring replaces "]d" with the current date via the commands below.
FormatTime, CurrentDateTime,, yyyy-M-d ; It will look like 2005-9-1
SendInput %CurrentDateTime%
return
;Create an empty Delphi 5 IFDEF declaration
;:o:ifdefd5::{{}$IFDEF VER130{}}{RETURN}{{}$ELSE{}}{ENTER}{{}$ENDIF{}}{UP}{HOME}{ENTER}{UP}
;:o:$endif::{{}$IFDEF{}}
::/eshrug::
SendInput ¯\_(ツ)_/¯
return