Map Alt + - or + for ? or ¿ symbols for SK71 keyboard (ISO)

This commit is contained in:
q3aql 2020-11-10 19:10:41 +01:00
parent afe5dd7ed7
commit 9100b299f9
2 changed files with 21 additions and 1 deletions

View File

@ -95,6 +95,16 @@ return
LWin & LAlt::RAlt LWin & LAlt::RAlt
return 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) ; Disable CapsLock (map CapsLock to Shift)
SetCapsLockState, AlwaysOff SetCapsLockState, AlwaysOff
CapsLock::LShift CapsLock::LShift

View File

@ -6,7 +6,7 @@
; # Contact: q3aql@protonmail.ch # ; # Contact: q3aql@protonmail.ch #
; # License: GPL v2.0 # ; # License: GPL v2.0 #
; ################################################ ; ################################################
; Version v2.4 ; Version v2.5
; ;
; You've probably noticed that when you switch from an ISO keyboard ; You've probably noticed that when you switch from an ISO keyboard
; to an ANSI keyboard, the "<" and ">" keys are missing. When you ; to an ANSI keyboard, the "<" and ">" keys are missing. When you
@ -95,3 +95,13 @@ return
LWin & LAlt::RAlt LWin & LAlt::RAlt
return return
; ;
; Map Alt + - to show ? simbol (for SK71 keyboard)
!-::
Send, ?
return
;
; Map Alt + '+' to show ¿ simbol (for SK71 keyboard)
LAlt & +::
Send, ¿
return
;