Skip to content

Instantly share code, notes, and snippets.

@inxilpro
Created February 11, 2026 18:48
Show Gist options
  • Select an option

  • Save inxilpro/e06a940c4c183a600e459658c8a6b9f5 to your computer and use it in GitHub Desktop.

Select an option

Save inxilpro/e06a940c4c183a600e459658c8a6b9f5 to your computer and use it in GitHub Desktop.

Revisions

  1. inxilpro created this gist Feb 11, 2026.
    39 changes: 39 additions & 0 deletions fix-claude-return-key.json
    Original 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"
    }
    ]
    }