重新映射控制+左键单击左键同时按下其他键


0

我需要能够按住控制并左键单击,而不会将点击更改为右键单击。我能够使用Karabiner Elements完成此操作,但是当我按住另一个键并控制+单击时,它仍然会将控件+单击更改为右键单击。

例如,如果我在点击时按住“w”和控制键,我需要“w”,控制和单击以单独注册。我正在寻找任何解决方案。这是我所拥有的Karabiner Elements JSON文件,仅在单独按下时才替换control + click:

{
"title": "Disable Ctrl Click",
"rules": [
    {
        "description": "Ctrl + Left Click to Left Click",
        "manipulators": [
            {
                "type": "basic",
                "from": {
                    "pointing_button": "button1",
                    "modifiers": {
                        "mandatory": [
                            "left_control"
                        ],
                        "optional": [
                            "any"
                        ]
                    }
                },
                "to": [
                    {
                        "pointing_button": "button1"
                    },
                    {
                        "key_code": "left_control"
                    }
                ]
            }
        ]
    }
]
}
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.