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 ?
1 回答
MM們
TA貢獻1886條經驗 獲得超2個贊
通過 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 ,問題就解決了。

- 1 回答
- 0 關注
- 2478 瀏覽
添加回答
舉報
0/150
提交
取消
