Last active
April 12, 2018 17:01
-
-
Save zlargon/e9e8a74bb74f56d908ca2cb8ad06427e to your computer and use it in GitHub Desktop.
Backslash to Forward Delete: 1. Fn+Backslash to Backslash 2. retain Shift+Backslash
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 Forward Delete", | |
"rules": [ | |
{ | |
"description": "1. Fn+Backslash to Backslash 2. retain Shift+Backslash", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "backslash", | |
"modifiers": { | |
"mandatory": [ | |
"fn" | |
] | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "backslash" | |
} | |
], | |
"type": "basic" | |
}, | |
{ | |
"from": { | |
"key_code": "backslash", | |
"modifiers": { | |
"mandatory": [ | |
"left_shift" | |
] | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "backslash", | |
"modifiers": [ | |
"left_shift" | |
] | |
} | |
], | |
"type": "basic" | |
}, | |
{ | |
"from": { | |
"key_code": "backslash" | |
}, | |
"to": [ | |
{ | |
"key_code": "delete_forward" | |
} | |
], | |
"type": "basic" | |
} | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment