Skip to content

Instantly share code, notes, and snippets.

@resnant
Created June 6, 2024 13:29
Show Gist options
  • Save resnant/3c09421c6f0809a5e2282add0810e4e3 to your computer and use it in GitHub Desktop.
Save resnant/3c09421c6f0809a5e2282add0810e4e3 to your computer and use it in GitHub Desktop.
karabiner-move-cursor
{
"description": "control+ sdefでカーソル移動",
"manipulators": [
{
"from": {
"key_code": "s",
"modifiers": {
"mandatory": [
"control"
]
}
},
"to": [
{
"key_code": "left_arrow"
}
],
"type": "basic"
},
{
"from": {
"key_code": "d",
"modifiers": {
"mandatory": [
"control"
]
}
},
"to": [
{
"key_code": "down_arrow"
}
],
"type": "basic"
},
{
"from": {
"key_code": "e",
"modifiers": {
"mandatory": [
"control"
]
}
},
"to": [
{
"key_code": "up_arrow"
}
],
"type": "basic"
},
{
"from": {
"key_code": "f",
"modifiers": {
"mandatory": [
"control"
]
}
},
"to": [
{
"key_code": "right_arrow"
}
],
"type": "basic"
},
{
"from": {
"key_code": "semicolon",
"modifiers": {
"mandatory": [
"control"
]
}
},
"to": [
{
"key_code": "delete_or_backspace"
}
],
"type": "basic"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment