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
RAlt::SendInput ^#{Left}
LCtrl::SendInput ^#{Right}
:;Change virtual desktop
;;RAlt::SendInput ^#{Left}
;General remappings
CapsLock::LControl
RShift & LShift::CapsLock
LShift & RShift::CapsLock
;*CapsLock::return
LCtrl::AppsKey
;;*CapsLock::return
;Adding tonic vowels with tilde and ñ to non-ES keyboard
!a::á
!e::é
!i::í
!o::ó
!u::ú
!n::Send, {U+00F1}
!/::Send, {U+00FC}
!+a::Á
!+e::É
!+i::Í
!+o::Ó
!+u::Ú
!+n::Send, {U+00D1}
!+/::Send, {U+00DC}
<!a::Send, {U+00E1}
<!e::Send, {U+00E9}
<!i::Send, {U+00ED}
<!o::Send, {U+00F3}
<!u::Send, {U+00FA}
<!n::Send, {U+00F1}
<!/::Send, {U+00FC}
<!+a::Send, {U+00C1}
<!+e::Send, {U+00C9}
<!+i::Send, {U+00CD}
<!+o::Send, {U+00D3}
<!+u::Send, {U+00DA}
<!+n::Send, {U+00D1}
<!+/::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(*).