【MAC】方向键 改成 左command+IJKL

  1. 安装Karabiner
  2. 在以下目录新建karabiner.json文件


    【MAC】方向键 改成 左command+IJKL_第1张图片
    image.png
  3. 在新建的karabiner.json文件内输入以下内容

{
    "title": "方向映射",
    "rules": [
        {
            "description": "将左command+IJKL变成方向键",
            "manipulators": [
                {
                    "type": "basic",
                    "from": {
                        "key_code": "i",
                        "modifiers": {
                            "mandatory": ["left_command"],
                            "optional": ["any"]
                        }
                    },
                    "to": [{"key_code": "up_arrow"}]
                },
                {
                    "type": "basic",
                    "from": {
                        "key_code": "j",
                        "modifiers": {
                            "mandatory": ["left_command"],
                            "optional": ["any"]
                        }
                    },
                    "to": [{"key_code": "left_arrow"}]
                },
                {
                    "type": "basic",
                    "from": {
                        "key_code": "k",
                        "modifiers": {
                            "mandatory": ["left_command"],
                            "optional": ["any"]
                        }
                    },
                    "to": [{"key_code": "down_arrow"}]
                },
                {
                    "type": "basic",
                    "from": {
                        "key_code": "l",
                        "modifiers": {
                            "mandatory": ["left_command"],
                            "optional": ["any"]
                        }
                    },
                    "to": [{"key_code": "right_arrow"}]
                }
            ]
        }
    ]
}

  1. 打开刚刚安装的软件Karabiner-Elements,并选择“Complex Modifications”,点击“Add rule”


    【MAC】方向键 改成 左command+IJKL_第2张图片
    image.png
  2. 选择“将左command+ijkl变成方向键”右侧的“Enable”按钮

  3. 完成

你可能感兴趣的:(【MAC】方向键 改成 左command+IJKL)