Skip to content

Instantly share code, notes, and snippets.

@scarletquasar
Created February 19, 2024 05:21
Show Gist options
  • Save scarletquasar/c94f5823bfd9fa38c9f45e159f9f2329 to your computer and use it in GitHub Desktop.
Save scarletquasar/c94f5823bfd9fa38c9f45e159f9f2329 to your computer and use it in GitHub Desktop.
[Script] Accents in american keyboard using Autohotkey
Combinations Alt Alt + Ctrl Alt + Shift Alt + Shift + Ctrl Right Alt
A á à Á À ã
E é è É È
I í ì Í Ì
O ó ò Ó Ò õ
U ú ù Ú Ù
>!a::send {ASC 0227} ; ã

+>!a::send {ASC 0195} ; Ã

!a::send {ASC 0225} ; á

+!a::send {ASC 0193} ; Á

<^!a::send {ASC 0224} ; à

<^+!a::send {ASC 0192} ; À

>!o::send {ASC 0245} ; õ

!e::send {ASC 0233} ; é

+!e::send {ASC 0201} ; É

<^!e::send {ASC 0232} ; è

<^+!e::send {ASC 0200} ; È

>!e::send {ASC 0128} ;

!i::send {ASC 0237} ; í

+!i::send {ASC 0205} ; Í

<^!i::send {ASC 0236} ; ì

<^+!i::send {ASC 0204} ; Ì

+>!o::send {ASC 0213} ; Õ

!o::send {ASC 0243} ; ó

+!o::send {ASC 0211} ; Ó

<^!o::send {ASC 0242} ; ò

<^+!o::send {ASC 0210} ; Ò

!u::send {ASC 0250} ; ú

+!u::send {ASC 0218} ; Ú

<^!u::send {ASC 0249} ; ù

<^+!u::send {ASC 0217} ; Ù

!c::send {ASC 0231} ; ç

+!c::send {ASC 0199} ; Ç

Source: I lost the source link, it's a reddit post, if someone knows it, please post.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment