From 9100b299f971b920b29e9ebb3d9ccb0f232aef88 Mon Sep 17 00:00:00 2001 From: q3aql Date: Tue, 10 Nov 2020 19:10:41 +0100 Subject: [PATCH] =?UTF-8?q?Map=20Alt=20+=20-=20or=20+=20for=20=3F=20or=20?= =?UTF-8?q?=C2=BF=20symbols=20for=20SK71=20keyboard=20(ISO)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/ansi-gli-nocapslock.ahk | 10 ++++++++++ src/ansi-gli.ahk | 12 +++++++++++- 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/src/ansi-gli-nocapslock.ahk b/src/ansi-gli-nocapslock.ahk index b55e56a..83da01c 100644 --- a/src/ansi-gli-nocapslock.ahk +++ b/src/ansi-gli-nocapslock.ahk @@ -95,6 +95,16 @@ return LWin & LAlt::RAlt return ; +; Map Alt + - to show ? simbol (for SK71 keyboard) +!-:: +Send, ? +return +; +; Map Alt + '+' to show ¿ simbol (for SK71 keyboard) +LAlt & +:: +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 0c4f272..c395c1d 100644 --- a/src/ansi-gli.ahk +++ b/src/ansi-gli.ahk @@ -6,7 +6,7 @@ ; # Contact: q3aql@protonmail.ch # ; # License: GPL v2.0 # ; ################################################ -; Version v2.4 +; Version v2.5 ; ; You've probably noticed that when you switch from an ISO keyboard ; to an ANSI keyboard, the "<" and ">" keys are missing. When you @@ -95,3 +95,13 @@ return LWin & LAlt::RAlt return ; +; Map Alt + - to show ? simbol (for SK71 keyboard) +!-:: +Send, ? +return +; +; Map Alt + '+' to show ¿ simbol (for SK71 keyboard) +LAlt & +:: +Send, ¿ +return +;