Skip to content

Instantly share code, notes, and snippets.

@garaemon
Last active February 14, 2021 01:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save garaemon/df5f78f04218c95f16fadf38a364babc to your computer and use it in GitHub Desktop.
Save garaemon/df5f78f04218c95f16fadf38a364babc to your computer and use it in GitHub Desktop.
Use command+e to create code region
{
"description": "Remap Command+e to Command+Shift+c in slack",
"manipulators": [
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.tinyspeck\\.slackmacgap$"
],
"type": "frontmost_application_if"
}
],
"from": {
"key_code": "e",
"modifiers": {
"mandatory": [
"command"
]
}
},
"to": [
{
"key_code": "c",
"modifiers": [
"shift",
"command"
]
}
],
"type": "basic"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment