请问 Raycast 可以改成按 ESC 退出,CMD+ESC 为返回上一级菜单吗?
谢谢
1
lawcc OP 试着写了一下 Karabiner ,但不太好使,感觉是 conditions 的问题
``` { "description": "Raycast ESC to cmd+w", "manipulators": [ { "from": { "key_code": "escape" }, "to": [ { "key_code": "w", "modifiers": [ "command" ] } ], "conditions": [ { "type": "frontmost_application_if", "bundle_identifiers": [ "^com\\.raycast\\.macos$" ] } ], "type": "basic" } ] } ``` |