-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQuickDash.ahk
57 lines (51 loc) · 1.59 KB
/
QuickDash.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
#Requires AutoHotkey v2.0
#SingleInstance Force
; Compiler directives to set property values for the QuickDash executable. When ahk_exe
; new version is released, the version field at the top should be incremented.
;@Ahk2Exe-SetVersion 1.0.0
;@Ahk2Exe-SetName QuickDash
;@Ahk2Exe-SetDescription QuickDash Keyboard Shortcuts
;@Ahk2Exe-SetCopyright © 2025 Nathan Spencer. All rights reserved.
; Disables this hotkey in console windows and code editors, where "--" is often used
; intentionally. Add other windows to exlude here if desired. AutoHotkey's Window Spy
; can be used to determine the name of each.
#HotIf !WinActive("ahk_exe devenv.exe")
&& !WinActive("ahk_exe code.exe")
&& !WinActive("ahk_exe WindowsTerminal.exe")
; Adjust this as desired to make the time window between hypen keystrokes that should be
; combined into en or em dashes more or less lenient. The default is 400 milliseconds.
TIME_THRESHOLD_MS := 400
EN_DASH := "–"
EM_DASH := "—"
PRIOR_EN_DASH := false
PRIOR_EM_DASH := false
$-::
{
Critical
global PRIOR_EN_DASH, PRIOR_EM_DASH
if (A_PriorKey == "-" && A_TimeSincePriorHotkey < TIME_THRESHOLD_MS && !PRIOR_EM_DASH)
{
; If we just sent an en dash, make it an em dash
if (PRIOR_EN_DASH)
{
Send "{BackSpace}"
Send EM_DASH
PRIOR_EN_DASH := false
PRIOR_EM_DASH := true
}
; If we just sent a hyphen, make it an en dash
else
{
Send "{BackSpace}"
Send EN_DASH
PRIOR_EN_DASH := true
}
}
; Send a hyphen if it's the first thing sent (or if we just finished up an em dash)
else
{
Send "-"
PRIOR_EN_DASH := false
PRIOR_EM_DASH := false
}
}