KE-complex_modifications icon indicating copy to clipboard operation
KE-complex_modifications copied to clipboard

Try to map Fn + rightClick to send Cmd+w: but it's not working with the following

Open ipstone opened this issue 2 years ago • 0 comments

Hello,

I am trying to configure Fn + rightClick to close app window, but this is not working - might you know what is going wrong below? Thanks a ton!

      "description": "FN + <rightClick> to Cmd + w ",
      "manipulators": [
        {
          "from": {
            "modifiers": {
              "mandatory": [
                "fn"
              ]
            },
            "pointing_button": "button2"
          },
          "to": [
            {
              "key_code": "w",
              "modifiers": [
                "command"
              ]
            }
          ]
        }
      ]
    }

ipstone avatar Mar 03 '23 23:03 ipstone