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.
{
"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"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment