Last active
January 27, 2017 06:58
-
-
Save msnoigrs/5843faa93dabb9babde93921ab1d6502 to your computer and use it in GitHub Desktop.
Ctrl + backslash でIMEをトグルしたい。IME.ahkは検索して取ってきてください。
This file contains hidden or 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
#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