Skip to content

Instantly share code, notes, and snippets.

@zwzheng45
Created December 15, 2025 00:36
Show Gist options
  • Select an option

  • Save zwzheng45/cff83a790f94e9fa5097c90d90c44def to your computer and use it in GitHub Desktop.

Select an option

Save zwzheng45/cff83a790f94e9fa5097c90d90c44def to your computer and use it in GitHub Desktop.
Karabiner规则:fn/ctrl+ijkl to ↑←↓→
{
"description": "Map fn+ijkl and ctrl+ijkl to arrow keys",
"manipulators": [
{ "type": "basic", "from": { "key_code": "i", "modifiers": { "mandatory": ["fn"], "optional": ["any"] } }, "to": [{ "key_code": "up_arrow" }] },
{ "type": "basic", "from": { "key_code": "k", "modifiers": { "mandatory": ["fn"], "optional": ["any"] } }, "to": [{ "key_code": "down_arrow" }] },
{ "type": "basic", "from": { "key_code": "j", "modifiers": { "mandatory": ["fn"], "optional": ["any"] } }, "to": [{ "key_code": "left_arrow" }] },
{ "type": "basic", "from": { "key_code": "l", "modifiers": { "mandatory": ["fn"], "optional": ["any"] } }, "to": [{ "key_code": "right_arrow" }] },
{ "type": "basic", "from": { "key_code": "i", "modifiers": { "mandatory": ["control"], "optional": ["any"] } }, "to": [{ "key_code": "up_arrow" }] },
{ "type": "basic", "from": { "key_code": "k", "modifiers": { "mandatory": ["control"], "optional": ["any"] } }, "to": [{ "key_code": "down_arrow" }] },
{ "type": "basic", "from": { "key_code": "j", "modifiers": { "mandatory": ["control"], "optional": ["any"] } }, "to": [{ "key_code": "left_arrow" }] },
{ "type": "basic", "from": { "key_code": "l", "modifiers": { "mandatory": ["control"], "optional": ["any"] } }, "to": [{ "key_code": "right_arrow" }] }
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment