美文网首页
【MAC】方向键 改成 左command+IJKL

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

作者: 大Q本Q | 来源:发表于2019-08-09 11:49 被阅读0次
    1. 安装Karabiner
    2. 在以下目录新建karabiner.json文件


      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”


      image.png
    2. 选择“将左command+ijkl变成方向键”右侧的“Enable”按钮

    3. 完成

    相关文章

      网友评论

          本文标题:【MAC】方向键 改成 左command+IJKL

          本文链接:https://www.haomeiwen.com/subject/bgbcjctx.html