Skip to content

Instantly share code, notes, and snippets.

@amondnet
Last active October 24, 2025 14:29
Show Gist options
  • Select an option

  • Save amondnet/dbaaa418063324358d999a45fee6e3ef to your computer and use it in GitHub Desktop.

Select an option

Save amondnet/dbaaa418063324358d999a45fee6e3ef to your computer and use it in GitHub Desktop.
Shift+Enter to Option+Enter in IntelliJ Terminal (for Claude Code)
{
"description": "Shift+Enter to Option+Enter in IntelliJ Terminal (for Claude Code)",
"manipulators": [
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.jetbrains\\.intellij",
"^com\\.jetbrains\\..*"
],
"type": "frontmost_application_if"
}
],
"from": {
"key_code": "return_or_enter",
"modifiers": {
"mandatory": ["shift"],
"optional": ["any"]
}
},
"to": [
{
"key_code": "return_or_enter",
"modifiers": ["option"]
}
],
"type": "basic"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment