Skip to content

Instantly share code, notes, and snippets.

@ryan-willis
Last active February 4, 2022 17:17
Show Gist options
  • Select an option

  • Save ryan-willis/ce60fff971adb9274db3311173f54bc7 to your computer and use it in GitHub Desktop.

Select an option

Save ryan-willis/ce60fff971adb9274db3311173f54bc7 to your computer and use it in GitHub Desktop.
Shift+Enter newline on Messages (Karabiner Elements 12)
{
"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"
]
}
]
}
]
}
]
}
@InSasquatchCountry
Copy link

InSasquatchCountry commented May 4, 2020

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment