From 948c3a4a69014e72b3dac468d6b3084d9d2cbf0b Mon Sep 17 00:00:00 2001 From: q3aql Date: Tue, 4 May 2021 12:31:48 +0200 Subject: [PATCH] Map Win + Esc to show blacklash --- src/ansi-gli-nocapslock.ahk | 5 +++++ src/ansi-gli.ahk | 7 ++++++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/src/ansi-gli-nocapslock.ahk b/src/ansi-gli-nocapslock.ahk index 00069bd..9ffd963 100644 --- a/src/ansi-gli-nocapslock.ahk +++ b/src/ansi-gli-nocapslock.ahk @@ -120,6 +120,11 @@ return Send, \ return ; +; Map Win + Esc to show blacklash +LWin & Escape:: +Send, \ +return +; ; Disable CapsLock (map CapsLock to Shift) SetCapsLockState, AlwaysOff CapsLock::LShift diff --git a/src/ansi-gli.ahk b/src/ansi-gli.ahk index dd85a06..43a7fed 100644 --- a/src/ansi-gli.ahk +++ b/src/ansi-gli.ahk @@ -119,4 +119,9 @@ return !':: Send, \ return -;; +; +; Map Win + Esc to show blacklash +LWin & Escape:: +Send, \ +return +;