1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

英語キーボードでの日本語入力切替をaltでトグル切り替えする方法

Last updated at Posted at 2019-02-11

https://github.com/karakaram/alt-ime-ahk/releases にて、macライクに左側のaltで英語、右側のaltで日本語切り替えできます。しかしmacでトグル設定にしていて同じように使いたい人がいると思います。以下のように変更すると右側のaltにてトグル制御で英語と日本語を切り替えられます。

####手順1. https://github.com/karakaram/alt-ime-ahk/releases からソースコードを落としてくる

####手順2. alt-ime-ahk.ahk の"LAlt"を消して以下のように変更する

alt-ime-ahk.ahk

*~RAlt::Send {Blind}{vk07}

;  Alt 空打ちで IME  ON
RAlt up::
	if (A_PriorHotkey == "*~RAlt")
	{
		if (IME_GET() == 0)
		{
			IME_SET(1)
		}
		else
		{
			IME_SET(0)
		}
	}
	Return

####手順3. AutoHotKeyをインストールしてalt-ime-ahk.ahkを右クリックからコンパイルを選択しexeを作成

####手順4. 作成されたexeを実行。(終了はTask Managerから)

#####参考資料:
https://www.karakaram.com/alt-ime-on-off

改変・再配布自由とのこと。

1
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?