Skip to content

Instantly share code, notes, and snippets.

@metinkale38
Created June 1, 2020 22:41
Show Gist options
  • Save metinkale38/b356cea87ec257bff23095c9dce3fdcb to your computer and use it in GitHub Desktop.
Save metinkale38/b356cea87ec257bff23095c9dce3fdcb to your computer and use it in GitHub Desktop.
Autohotkey Script to easily type turkish letters e.g. using Alt_R + s = ş
#SingleInstance
#NoTrayIcon
<^>!s::
Send ş
return
<^>!+s::
Send Ş
return
<^>!c::
Send ç
return
<^>!+c::
Send Ç
return
<^>!g::
Send ğ
return
<^>!+g::
Send Ğ
return
<^>!i::
Send ı
return
<^>!+i::
Send İ
return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment