-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEmojis.ahk
42 lines (37 loc) · 1.05 KB
/
Emojis.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
; List of commonly used emojis
; Included in EssentialKeys.ahk
; Written by Andrew Glick
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
; Set hotstring options
; * - Don't require an ending character
; ? - Can be triggered inside another word
#Hotstring * ?
;==============================================================================
; EMOJIS
;==============================================================================
::\:)::😊
::\;)::😉
::\:(::🙁
::\wink::😉
::\(: ::🙃
::\yikes::😬
::\sigh::😔
::\:|::😑
:C:\:D::😄
::\XD::😂
::\:P::😛
::\cry::😥
::\ccry::😭
::\grr::😠
::\hmm::🤔
::\angry::😠
::\tup::👍
::\clap::👏
::\facepalm::🤦♂️
::\shrug::🤷♂️
::\thank::🙏
; Reset hostring options
#Hotstring *0 ?0