-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSymbols.ahk
112 lines (99 loc) · 1.62 KB
/
Symbols.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
#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.
; Global rules
#Hotstring * ? C
; ===Hotstrings===
; Greek letters
::\alpha::α
::\beta::β
::\gamma::γ
::\lambda::λ
::\delta::δ
::\Delta::Δ
::\epsilon::ε
::\theta::θ
::\mu::μ
::\pi::π
::\rho::ρ
::\Sigma::Σ
::\sigma::σ
::\tao::τ
::\Phi::Φ
::\phi::φ
::\chi::χ
::\psi::ψ
::\Omega::Ω
::\omega::ω
::\zeta::ζ
; Random symbols
::\ang::Å
::\*::•
::\vv::↓
::\^^::↑
::\<-::←
::\->::→
::\<>::↔
::\^v::↕
::\+-::±
::\prop::∝
::\perp::⊥
::\--::—
::\en::–
::\em::—
::\check::✔️
::\X::❌
::\x::×
::\paragraph::¶
::\ss::§
::\<=::≤
::\>=::≥
::\...::…
; Fractions
::\1/2::½
::\1/3::⅓
::\2/3::⅔
::\1/4::¼
::\3/4::¾
::\1/5::⅕
::\2/5::⅖
::\3/5::⅗
::\4/5::⅘
::\1/7::⅐
::\1/8::⅛
::\1/9::⅑
::\1/10::⅒
; Superscripts
::\dagger::†
::\doubledagger::‡
::\degree::°
::\^o::°
::\tm::™
::\^-::⁻
::\^+::⁺
::\^n::ⁿ
::\^0::⁰
::\^1::¹
::\^2::²
::\^3::³
::\^4::⁴
::\^5::⁵
::\^6::⁶
::\^7::⁷
::\^8::⁸
::\^9::⁹
; Subscripts
::\_-::₋
::\_+::₊
::\_n::ₙ
::\_0::₀
::\_1::₁
::\_2::₂
::\_3::₃
::\_4::₄
::\_5::₅
::\_6::₆
::\_7::₇
::\_8::₈
::\_9::₉