Skip to content

Instantly share code, notes, and snippets.

@zlargon
Last active April 12, 2018 17:01
Show Gist options
  • Save zlargon/e9e8a74bb74f56d908ca2cb8ad06427e to your computer and use it in GitHub Desktop.
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
{
"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