Skip to content

Instantly share code, notes, and snippets.

@knutov
Forked from vsalex/CmdShiftToCmdE.json
Last active December 13, 2017 15:21
Show Gist options
  • Save knutov/9a7d8c5015ed958b25c339761b36da0e to your computer and use it in GitHub Desktop.
Save knutov/9a7d8c5015ed958b25c339761b36da0e to your computer and use it in GitHub Desktop.
{
"title": "Languages",
"rules": [
{
"description": "Command + Shift (left and right) to Command + e",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "left_shift",
"modifiers": {
"mandatory": [
"left_command"
]
}
},
"to": [
{
"key_code": "e",
"modifiers": [
"left_command"
]
}
]
},
{
"type": "basic",
"from": {
"key_code": "right_shift",
"modifiers": {
"mandatory": [
"right_command"
]
}
},
"to": [
{
"key_code": "e",
"modifiers": [
"left_command"
]
}
]
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment