Last active
October 24, 2025 14:29
-
-
Save amondnet/dbaaa418063324358d999a45fee6e3ef to your computer and use it in GitHub Desktop.
Shift+Enter to Option+Enter in IntelliJ Terminal (for Claude Code)
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 characters
| { | |
| "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