Created
February 11, 2026 18:48
-
-
Save inxilpro/e06a940c4c183a600e459658c8a6b9f5 to your computer and use it in GitHub Desktop.
Revisions
-
inxilpro created this gist
Feb 11, 2026 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,39 @@ { "description": "Claude Desktop: Return key customizations", "manipulators": [ { "conditions": [ { "bundle_identifiers": [ "com\\.anthropic\\.claudefordesktop" ], "type": "frontmost_application_if" } ], "from": { "key_code": "return_or_enter", "modifiers": { "mandatory": ["command"] } }, "to": [{ "key_code": "return_or_enter" }], "type": "basic" }, { "conditions": [ { "bundle_identifiers": [ "com\\.anthropic\\.claudefordesktop" ], "type": "frontmost_application_if" } ], "from": { "key_code": "return_or_enter" }, "to": [ { "key_code": "return_or_enter", "modifiers": ["shift"] } ], "type": "basic" } ] }