0
1

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 1 year has passed since last update.

IME切替を、Win/Macで共通化するKarabiner-Elements設定

Last updated at Posted at 2022-08-22

ただし、MacはUS配列のキーボードとし、IME切替は昔ながらのCommand+Space
Windowsは、以下の例では、AmazonWorkspacesを使用する。

Karabiner-Elements Preferences > Misc > Open config folder
rulesに以下を追加。


  "rules": [
    {
      "description": "Switch IME Mode with Command+SPACE",
      "manipulators": [
        {
          "type": "basic",
          "from": {
            "key_code": "spacebar",
            "modifiers": {
              "mandatory":["left_command"]
            }
          },
          "to": [
            {
              "key_code": "spacebar",
              "modifiers": "left_control"
            }
          ],
          "conditions":[
            {
              "type": "frontmost_application_if",
              "bundle_identifiers":[
                "^com\\.amazon\\.workspaces$"            
              ],
              "description": " in Amazon Workspaces"
            }
          ]
        }
      ]
    }
  ]
0
1
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
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?