Last active
February 4, 2022 17:17
-
-
Save ryan-willis/ce60fff971adb9274db3311173f54bc7 to your computer and use it in GitHub Desktop.
Shift+Enter newline on Messages (Karabiner Elements 12)
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
| { | |
| "title": "Shift+Enter newline on Messages", | |
| "rules": [ | |
| { | |
| "description":"Change Shift+Enter to Ctrl+Enter in Messages", | |
| "manipulators":[ | |
| { | |
| "type":"basic", | |
| "from":{ | |
| "key_code": "return_or_enter", | |
| "modifiers": { | |
| "mandatory": [ | |
| "shift" | |
| ] | |
| } | |
| }, | |
| "to": [ | |
| { | |
| "key_code": "return_or_enter", | |
| "modifiers": [ | |
| "control" | |
| ] | |
| } | |
| ], | |
| "conditions": [ | |
| { | |
| "type": "frontmost_application_if", | |
| "bundle_identifiers": [ | |
| "^com.apple.iChat" | |
| ] | |
| } | |
| ] | |
| } | |
| ] | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://medium.com/@ryan.willis/how-to-use-shift-enter-to-insert-a-new-line-in-messages-on-macos-1704fb5b3254
Great article. Thank you!