试着写了一下 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" } ] } ```