Last active
February 11, 2018 06:15
-
-
Save f440/9761146a3979b7f9d2b6b20383b34502 to your computer and use it in GitHub Desktop.
control-[ to escape, control-m to return
This file contains 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
{ | |
"description": "control-[ to escape", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": { | |
"key_code": "open_bracket", | |
"modifiers": { "mandatory": [ "control" ] } | |
}, | |
"to": [ | |
{ "key_code": "escape" } | |
] | |
} | |
] | |
}, | |
{ | |
"description": "control-m to return", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": { | |
"key_code": "m", | |
"modifiers": { "mandatory": [ "control" ] } | |
}, | |
"to": [ | |
{ "key_code": "return_or_enter" } | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment