pqrs-org / Karabiner-archived

Karabiner (KeyRemap4MacBook) is a powerful utility for keyboard customization.
https://pqrs.org/osx/karabiner/
The Unlicense
3.82k stars 311 forks source link

° to > key remapping does not work #885

Open MHX792 opened 5 years ago

MHX792 commented 5 years ago

The assigning of ^ to < works, but not ° to >. Any help is appreciated:

  {
        "description": "Chromium ^ to < key",
        "manipulators": [
            {
                "type": "basic",
                "from": {
                    "key_code": "non_us_backslash"
                },
                "to": [
                    {
                        "key_code": "grave_accent_and_tilde"
                    }
                ],
                "conditions": [
                    {
                        "type": "frontmost_application_if",
                        "bundle_identifiers": [
                            "^org.chromium.Chromium"
                        ]
                    }
                ]
            }
        ]
    },

    {
        "description": "Chromium ° to > key",
        "manipulators": [
            {
                "type": "basic",
                "from": {
                    "key_code": "non_us_backslash",
                    "modifiers": [
                        "shift"
                    ]
                },
                "to": [
                    {
                        "key_code": "grave_accent_and_tilde",
                        "modifiers": [
                            "shift"
                        ]
                    }
                ],
                "conditions": [
                    {
                        "type": "frontmost_application_if",
                        "bundle_identifiers": [
                            "^org.chromium.Chromium"
                        ]
                    }
                ]
            }
        ]
    }