-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bd7e5a2
commit 37dd4b6
Showing
2 changed files
with
92 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
{ | ||
"description": "Option+Left/Right/Delete/Shift to fn+Left/Right/Delete/Shift (modify for ctrl)", | ||
"title": "Option+Left/Right/Delete/Shift to fn+Left/Right/Delete/Shift (modify for ctrl)", | ||
"maintainers": ["EamesTrinh"], | ||
"manipulators": [ | ||
{ | ||
"description": "Option+Left Arrow to Command+Left Arrow (Home/Beginning of Line)", | ||
"from": { | ||
"key_code": "left_arrow", | ||
"modifiers": { "mandatory": ["fn"] } | ||
}, | ||
"to": [ | ||
{ | ||
"key_code": "left_arrow", | ||
"modifiers": ["option"] | ||
} | ||
], | ||
"type": "basic" | ||
}, | ||
{ | ||
"description": "Option+Right Arrow to Command+Right Arrow (End of Line)", | ||
"from": { | ||
"key_code": "right_arrow", | ||
"modifiers": { "mandatory": ["fn"] } | ||
}, | ||
"to": [ | ||
{ | ||
"key_code": "right_arrow", | ||
"modifiers": ["option"] | ||
} | ||
], | ||
"type": "basic" | ||
}, | ||
{ | ||
"description": "Option+Backspace to Command+Backspace (Delete to Beginning of Line)", | ||
"from": { | ||
"key_code": "delete_or_backspace", | ||
"modifiers": { "mandatory": ["fn"] } | ||
}, | ||
"to": [ | ||
{ | ||
"key_code": "delete_or_backspace", | ||
"modifiers": ["option"] | ||
} | ||
], | ||
"type": "basic" | ||
}, | ||
{ | ||
"description": "Option+Delete to Command+Delete (Delete to End of Line)", | ||
"from": { | ||
"key_code": "delete_forward", | ||
"modifiers": { "mandatory": ["fn"] } | ||
}, | ||
"to": [ | ||
{ | ||
"key_code": "delete_forward", | ||
"modifiers": ["option"] | ||
} | ||
], | ||
"type": "basic" | ||
}, | ||
{ | ||
"description": "Shift+Option+Left Arrow to Shift+Command+Left Arrow (Select to Beginning of Line)", | ||
"from": { | ||
"key_code": "left_arrow", | ||
"modifiers": { "mandatory": ["fn", "shift"] } | ||
}, | ||
"to": [ | ||
{ | ||
"key_code": "left_arrow", | ||
"modifiers": ["option", "shift"] | ||
} | ||
], | ||
"type": "basic" | ||
}, | ||
{ | ||
"description": "Shift+Option+Right Arrow to Shift+Command+Right Arrow (Select to End of Line)", | ||
"from": { | ||
"key_code": "right_arrow", | ||
"modifiers": { "mandatory": ["fn", "shift"] } | ||
}, | ||
"to": [ | ||
{ | ||
"key_code": "right_arrow", | ||
"modifiers": ["option", "shift"] | ||
} | ||
], | ||
"type": "basic" | ||
} | ||
] | ||
} |