如何制作 Ä 型登山扣?

How do make karabiner type Ä?

我正在尝试将 å(选项-a)映射到 ä(选项-u,a),并将 Å(选项-shift-a)映射到 Ä(选项-u,shift-a)。我能够找出第一个:

{
    "description": "German: å to ä",
    "manipulators": [
        {
            "from": {
                "key_code": "a",
                "modifiers": {
                    "mandatory": [
                        "option"
                    ],
                    "optional": [
                        "any"
                    ]
                }
            },
            "to": [
                {
                    "key_code": "u",
                    "modifiers": ["left_option"]
                },
                {
                    "key_code": "a"
                }
            ],
            "type": "basic"
        },
    ]
}

但我无法理解第二个。如果我按住 shift,我会得到 ¨A,而不是 Ä。

使用 Karabiner-EventViewer 或 Apple 的 Keyboard Viewer 手动查看 shift-option-u 得到一个 bare ¨, option-u a 得到 äoption-u shift-a 得到 Ä 所以是:

{"title": "German: å to ä",
 "rules": [{"description": "⌥a to ä and ⇧⌥A to Ä.",
        "manipulators": [
          {"from": {"key_code": "a", "modifiers": {"mandatory": ["option"],
                               "optional": ["caps_lock", "control", "command"]}},
           "to": [{"key_code": "u", "modifiers": ["option"]},
              {"key_code": "a"}],
           "type": "basic"},
          {"from": {"key_code": "a", "modifiers": {"mandatory": ["option", "shift"],
                               "optional": ["caps_lock", "control", "command"]}},
           "to": [{"key_code": "u", "modifiers": ["option"]},
              {"key_code": "a", "modifiers": ["shift"]}],
           "type": "basic"}]}]}