首页 新闻 赞助 找找看

Mac上使用Microsoft Remote Desktop的快捷键问题

1
悬赏园豆:30 [已解决问题] 解决于 2017-12-07 22:36

Mac 系统是 macOS High Sierra ,之前使用 Microsoft Remote Desktop Connection 时,登录到 Windows 中按 command + A 会全选(等同于按 control + A)。

但是现在用 Microsoft Remote Desktop 时,按 command + A 等同于按 Windows键 + A ,会出现 Action Center 。

请问如何在 Microsoft Remote Desktop 也实现按 command + A 等同于 按 control + A ?

mac
dudu的主页 dudu | 高人七级 | 园豆:31075
提问于:2017-12-07 18:17
< >
分享
最佳答案
1

终于通过 Karabiner 解决了!

参考 KE-complex_modifications ,在 ~/.config/karabiner/assets/complex_modifications 中添加如下的 

remote_desktop.json 文件

{
  "title": "Remote Desktop",
  "rules": [
    {
      "description": "Remote Desktop Shortcuts",
      "manipulators": [
        {
          "type": "basic",
          "from": {
            "key_code": "a",
            "modifiers": {
              "mandatory": [
                "command"
              ],
              "optional": [
                "any"
              ]
            }
          },
          "to": [
            {
              "key_code": "a",
              "modifiers": [
                "left_control"
              ]
            }
          ],
          "conditions": [
            {
              "type": "frontmost_application_if",
              "bundle_identifiers": [
                "com\\.microsoft\\.rdc\\.osx\\.beta"
              ]
            }
          ]
        }
      ]
    }
  ]
}

然后在 Karabiner-Elements 中添加这个 Rule ,问题就解决了。

dudu | 高人七级 |园豆:31075 | 2017-12-07 22:35
清除回答草稿
   您需要登录以后才能回答,未注册用户请先注册