在 AutoHotKey 中,这工作得很好
RAlt & a::Send {U+00E4} ; RightAlt + a -> ä
现在我想映射那个字母的大写版本,即 RightAlt + RightShift + a -> Ä
我试过了,但没有奏效
RAlt & RShift & a::Send {U+00C4} ; RightAlt + RightShift + a -> Ä
>!>+a::Send {U+00C4}
我如何映射两者
- RightAlt + a -> ä
- RightAlt + RightShift + a -> Ä