Skip to content

Instantly share code, notes, and snippets.

@craigmdennis
Created January 30, 2019 23:08
Show Gist options
  • Save craigmdennis/48baeaf4ab0b0680637eeec0e3c141c9 to your computer and use it in GitHub Desktop.
Save craigmdennis/48baeaf4ab0b0680637eeec0e3c141c9 to your computer and use it in GitHub Desktop.
Karabiner: Change the backslash key to be delete unless it's held down, then show backslash as normal.
{
"title": "Backslash to Delete Unless Held",
"rules": [
{
"description": "Change the backslash key to be delete unless it's held down, then show backslash as normal.",
"manipulators": [
{
"from": {
"key_code": "backslash"
},
"to": [
{
"key_code": "return_or_enter"
}
],
"to_if_held_down": [
{
"key_code": "backslash"
}
],
"type": "basic"
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment