Skip to content

Instantly share code, notes, and snippets.

@f440
Last active February 11, 2018 06:15
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 f440/9761146a3979b7f9d2b6b20383b34502 to your computer and use it in GitHub Desktop.
Save f440/9761146a3979b7f9d2b6b20383b34502 to your computer and use it in GitHub Desktop.
control-[ to escape, control-m to return
{
"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