mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-09 22:12:56 +00:00
24 lines
341 B
AutoHotkey
24 lines
341 B
AutoHotkey
#Requires AutoHotkey v2.0
|
|
#SingleInstance
|
|
|
|
ih := InputHook("B L1 T1", "{Esc}")
|
|
|
|
*Ctrl::
|
|
{
|
|
ih.Start()
|
|
reason := ih.Wait()
|
|
if (reason = "Stopped") {
|
|
Send "{Esc}"
|
|
} else if (reason = "Max") {
|
|
Send "{Blind}{Ctrl down}" ih.Input
|
|
}
|
|
}
|
|
|
|
*Ctrl up::
|
|
{
|
|
if (ih.InProgress) {
|
|
ih.Stop()
|
|
} else {
|
|
Send "{Ctrl up}"
|
|
}
|
|
} |