Skip to content

Instantly share code, notes, and snippets.

@msnoigrs
Last active January 27, 2017 06:58
Show Gist options
  • Save msnoigrs/5843faa93dabb9babde93921ab1d6502 to your computer and use it in GitHub Desktop.
Save msnoigrs/5843faa93dabb9babde93921ab1d6502 to your computer and use it in GitHub Desktop.
Ctrl + backslash でIMEをトグルしたい。IME.ahkは検索して取ってきてください。
#Include IME.ahk
^\::
getIMEMode := IME_Get()
if (%getIMEMode% = 0)
{
IME_SET(1)
return
}
else
{
IME_SET(0)
return
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment