piusareLite: unicode, menu key, no virtual desktop

This commit is contained in:
Hane 2023-05-04 17:10:00 +02:00
commit cd606201aa

View file

@ -1,27 +1,28 @@
;Change virtual desktop :;Change virtual desktop
RAlt::SendInput ^#{Left} ;;RAlt::SendInput ^#{Left}
LCtrl::SendInput ^#{Right}
;General remappings ;General remappings
CapsLock::LControl CapsLock::LControl
RShift & LShift::CapsLock RShift & LShift::CapsLock
LShift & RShift::CapsLock LShift & RShift::CapsLock
;*CapsLock::return LCtrl::AppsKey
;;*CapsLock::return
;Adding tonic vowels with tilde and ñ to non-ES keyboard ;Adding tonic vowels with tilde and ñ to non-ES keyboard
!a::á <!a::Send, {U+00E1}
!e::é <!e::Send, {U+00E9}
!i::í <!i::Send, {U+00ED}
!o::ó <!o::Send, {U+00F3}
!u::ú <!u::Send, {U+00FA}
!n::Send, {U+00F1} <!n::Send, {U+00F1}
!/::Send, {U+00FC} <!/::Send, {U+00FC}
!+a::Á <!+a::Send, {U+00C1}
!+e::É <!+e::Send, {U+00C9}
!+i::Í <!+i::Send, {U+00CD}
!+o::Ó <!+o::Send, {U+00D3}
!+u::Ú <!+u::Send, {U+00DA}
!+n::Send, {U+00D1} <!+n::Send, {U+00D1}
!+/::Send, {U+00DC} <!+/::Send, {U+00DC}
;;Where :C?*:U"X:: contains the hotstring trigger, this case being typing U " X all together. Autohotkey gives us some control over how to interpret the hotstring, in this case by inserting C?* we are telling AHK to be case sensitie (C), to trigger even as part of a word (?) and to trigger without an ending character such as space or newline(*).
;;Where :C?*:U"X:: contains the hotstring trigger, this cASE BEING TYPING U " X ALL together. autohotkey gives us some control over how to interpret the hotstring, IN This Case By Inserting C?* We Are Telling Ahk To Be Case Sensitie (C), to trigger even as part of a word (?) and to trigger without an ending character such as space or newline(*).