Created
February 20, 2025 05:07
-
-
Save elifiner/fd6267f2695c2d10fd0602def1dee7cd to your computer and use it in GitHub Desktop.
Karabiner map Terminal.app Cmd+Left to Home and Cmd+Right to End
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
{ | |
"description": "Terminal", | |
"manipulators": [ | |
{ | |
"conditions": [ | |
{ | |
"bundle_identifiers": [ | |
"^com\\.apple\\.Terminal$" | |
], | |
"type": "frontmost_application_if" | |
} | |
], | |
"from": { | |
"key_code": "left_arrow", | |
"modifiers": { "mandatory": ["command"] } | |
}, | |
"to": [ | |
{ | |
"key_code": "a", | |
"modifiers": ["control"] | |
} | |
], | |
"type": "basic" | |
}, | |
{ | |
"conditions": [ | |
{ | |
"bundle_identifiers": [ | |
"^com\\.apple\\.Terminal$" | |
], | |
"type": "frontmost_application_if" | |
} | |
], | |
"from": { | |
"key_code": "right_arrow", | |
"modifiers": { "mandatory": ["command"] } | |
}, | |
"to": [ | |
{ | |
"key_code": "e", | |
"modifiers": ["control"] | |
} | |
], | |
"type": "basic" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment