Last active
June 21, 2021 15:45
-
-
Save aarongustafson/f59fead5a44734d31a20106d79d41c98 to your computer and use it in GitHub Desktop.
AutoHotKey stuff
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#UseHook | |
!VKC0SC029::Return ; grave -> the grave ` accent gave some probs, used the virtualkey + scancode instead | |
!e::Return ; acute | |
!i::Return ; circumflex | |
!t::Return ; tilde | |
!u::Return ; umlaut | |
; 1 2 3 4 5 6 7 8 9 1 | |
; 0 | |
; r g G a A c C t T u U | |
*a::diacritic("a","à,À,á,Á,â,Â,ã,Ã,ä,Ä") | |
*e::diacritic("e","è,È,é,É,ê,Ê,e,E,ë,Ë") | |
*i::diacritic("i","ì,Ì,í,Í,î,Î,i,I,ï,Ï") | |
*o::diacritic("o","ò,Ò,ó,Ó,ô,Ô,õ,Õ,ö,Ö") | |
*u::diacritic("u","ù,Ù,ú,Ú,û,Û,u,U,ü,Ü") | |
*n::diacritic("n","n,N,n,N,n,N,ñ,Ñ,n,N") | |
*y::diacritic("y","y,Y,y,Y,y,Y,y,Y,ÿ,Ÿ") | |
diacritic(regular,accentedCharacters) { | |
StringSplit, char, accentedCharacters, `, | |
graveOption := char1 | |
graveShiftOption := char2 | |
acuteOption := char3 | |
acuteShiftOption := char4 | |
circumflexOption := char5 | |
circumflexShiftOption := char6 | |
tildeOption := char7 | |
tildeShiftOption := char8 | |
umlautOption := char9 | |
umlautShiftOption := char10 | |
if (A_PriorHotKey = "!VKC0SC029" && A_TimeSincePriorHotkey < 2000) { | |
if (GetKeyState("Shift")) { | |
SendInput % graveShiftOption | |
} else { | |
SendInput % graveOption | |
} | |
} else if (A_PriorHotKey = "!e" && A_TimeSincePriorHotkey < 2000) { | |
if (GetKeyState("Shift")) { | |
SendInput % acuteShiftOption | |
} else { | |
SendInput % acuteOption | |
} | |
} else if (A_PriorHotKey = "!i" && A_TimeSincePriorHotkey < 2000) { | |
if (GetKeyState("Shift")) { | |
SendInput % circumflexShiftOption | |
} else { | |
SendInput % circumflexOption | |
} | |
} else if (A_PriorHotKey = "!t" && A_TimeSincePriorHotkey < 2000) { | |
if (GetKeyState("Shift")) { | |
SendInput % tildeShiftOption | |
} else { | |
SendInput % tildeOption | |
} | |
} else if (A_PriorHotKey = "!u" && A_TimeSincePriorHotkey < 2000) { | |
if (GetKeyState("Shift")) { | |
SendInput % umlautShiftOption | |
} else { | |
SendInput % umlautOption | |
} | |
} else { | |
if (GetKeyState("Shift") or GetKeyState("Capslock","T")) { | |
SendInput % "+" regular | |
} else { | |
SendInput % regular | |
} | |
} | |
} | |
; | |
; Alt + Shift + key | |
; | |
*!1::altShift("¡","/") | |
*!2::altShift("€","™") | |
*!3::altShift("£","‹") | |
*!4::altShift("¢","›") | |
*!5::altShift("8","fi") | |
*!6::altShift("§","fl") | |
*!7::altShift("¶","‡") | |
*!8::altShift("•","°") | |
*!9::altShift("ª","·") | |
*!0::altShift("º","‚") | |
*!a::altShift("å","Å") | |
*!b::altShift("integral","i") | |
*!c::altShift("ç","Ç") | |
*!d::altShift("partial difference","Î") | |
*!e::altShift("´","‰") | |
*!f::altShift("ƒ","Ï") | |
*!g::altShift("©","Ì") | |
*!h::altShift("overdot","Ó") | |
*!i::altShift("^","È") | |
*!j::altShift("delta","Ô") | |
*!k::altShift("°","Apple") | |
*!l::altShift("¬","Ò") | |
*!m::altShift("µ","˜") | |
*!n::altShift("~","ˆ") | |
*!o::altShift("ø","Ø") | |
*!p::altShift("pi","Pi") | |
*!q::altShift("œ","Œ") | |
*!r::altShift("®","Â") | |
*!s::altShift("ß","Í") | |
;*!t::altShift("†","Ê") | |
*!u::altShift("¨","Ë") | |
*!v::altShift("v","lozenge") | |
*!w::altShift("epsilon","„") | |
*!x::altShift("approximately equal","Ù") | |
*!y::altShift("¥","Á") | |
*!z::altShift("Omega","Û") | |
*!-::altShift("–","—") | |
*!=::altShift("!=","±") | |
*![::altShift("“","”") | |
*!]::altShift("‘","’") | |
*!`;::altShift("…","Ú") | |
*!'::altShift("æ","Æ") | |
*!\::altShift("«","»") | |
*!,::altShift("<=","¯") | |
*!.::altShift(">=","breve") | |
*!/::altShift("÷","¿") | |
altShift(accented,accentedShift) { | |
if (!GetKeyState("Shift")) { | |
SendInput % accented | |
} else { | |
SendInput % accentedShift | |
} | |
} | |
; Fix for some CTRL + stuff that may not work | |
; TODO - Add more as we find them | |
^a::Send ^{end}^+{home} | |
^o::WinMenuSelectItem, A, , File, Open |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
!-::– | |
!+-::— |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I created a fork of this with real characters in place of words like "omega", "integral", "approximately equal", etc. Only the word "Apple" remains since AFAIK that logo doesn't render in Windows without a special font.
Update: I also made the control shortcuts work a little better (e.g.
ctrl-a
in Chrome wouldn't select an entire [readonly] page's contents). I added support forctrl-y
(Redo).