Skip to content

Instantly share code, notes, and snippets.

@elifiner
Created February 20, 2025 05:07
Show Gist options
  • Save elifiner/fd6267f2695c2d10fd0602def1dee7cd to your computer and use it in GitHub Desktop.
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
{
"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