Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save 256hax/37327ab41de64b8aa3ba5b74121ec7ec to your computer and use it in GitHub Desktop.

Select an option

Save 256hax/37327ab41de64b8aa3ba5b74121ec7ec to your computer and use it in GitHub Desktop.
DiscordのEnterキーの挙動変更(Karabiner-Elements)- Enterで改行 / Command + Enterで送信
{
"description": "Discord-Enter-Modification",
"manipulators": [
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.hnc\\.Discord"
],
"type": "frontmost_application_if"
}
],
"from": { "key_code": "return_or_enter" },
"to": [
{
"key_code": "return_or_enter",
"modifiers": ["left_shift"]
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.hnc\\.Discord"
],
"type": "frontmost_application_if"
}
],
"from": {
"key_code": "return_or_enter",
"modifiers": { "mandatory": ["command"] }
},
"to": { "key_code": "return_or_enter" },
"type": "basic"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment