Created
January 30, 2019 23:08
-
-
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.
This file contains hidden or 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
{ | |
"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