Skip to content

Instantly share code, notes, and snippets.

@raulrpearson
Last active February 12, 2019 07:22
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 raulrpearson/8848298328e80ee2da58adb36ea59c7d to your computer and use it in GitHub Desktop.
Save raulrpearson/8848298328e80ee2da58adb36ea59c7d to your computer and use it in GitHub Desktop.
Karabiner-Elements rule to insert backtick/backquote with a single keystroke
{
"description": "Insert backquote in one swift stroke.",
"manipulators": [
{
"conditions": {
"input_sources": [
{
"input_source_id": "^com\\.apple\\.keylayout\\.Spanish-ISO$"
}
],
"type": "input_source_if"
},
"from": {
"key_code": "open_bracket"
},
"to": [
{
"key_code": "open_bracket"
},
{
"key_code": "spacebar"
}
],
"type": "basic"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment