Skip to content

Instantly share code, notes, and snippets.

@terasakisatoshi
Created October 10, 2021 03:38
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 terasakisatoshi/121e685483f517a2ffb755ef3b38164d to your computer and use it in GitHub Desktop.
Save terasakisatoshi/121e685483f517a2ffb755ef3b38164d to your computer and use it in GitHub Desktop.
Ctrl-M to Esc Karabiner-Element
{
"title": "rules for Jupyter on VSCode",
"rules": [
{
"description": "Ctrl-M to Esc",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "m",
"modifiers": { "mandatory": [ "control" ] }
},
"to": [
{
"key_code": "escape"
}
]
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment