Skip to content

Instantly share code, notes, and snippets.

@OGProgrammer
Created August 17, 2022 20:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save OGProgrammer/e0927933ace059f9a5b2c905622f2428 to your computer and use it in GitHub Desktop.
Save OGProgrammer/e0927933ace059f9a5b2c905622f2428 to your computer and use it in GitHub Desktop.
move left right one word - karabiner
{
"description": "Quick Move Forward and Backward by 1 word",
"manipulators": [
{
"from": {
"key_code": "k",
"modifiers": {
"mandatory": [
"left_option"
]
}
},
"to": [
{
"key_code": "right_arrow",
"modifiers": [
"left_option"
]
}
],
"type": "basic"
},
{
"from": {
"key_code": "j",
"modifiers": {
"mandatory": [
"left_option"
]
}
},
"to": [
{
"key_code": "left_arrow",
"modifiers": [
"left_option"
]
}
],
"type": "basic"
}
]
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment