feat: remap arrow keys to hyper h, j, k, l

This commit is contained in:
2024-12-08 21:35:53 -05:00
parent c807f30824
commit 896f7566da
+124 -3
View File
@@ -347,13 +347,13 @@
{ {
"to": [ "to": [
{ {
"shell_command": "raycast://extensions/koinzhang/paste-as-plain-text/paste-as-plain-text?arguments=%7B%22advancedPasteFormat%22%3A%22%22%7D" "shell_command": "open raycast://extensions/koinzhang/paste-as-plain-text/paste-as-plain-text?arguments=%7B%22advancedPasteFormat%22%3A%22%22%7D"
} }
], ],
"description": "unused", "description": "Paste as Plain Text",
"type": "basic", "type": "basic",
"from": { "from": {
"key_code": "h", "key_code": "v",
"modifiers": { "modifiers": {
"mandatory": ["any"] "mandatory": ["any"]
} }
@@ -591,6 +591,127 @@
] ]
} }
] ]
},
{
"description": "Hyper Key + h",
"manipulators": [
{
"to": [
{
"key_code": "left_arrow"
}
],
"type": "basic",
"from": {
"key_code": "h",
"modifiers": {
"mandatory": [
"left_command",
"left_control",
"left_shift",
"left_option"
]
}
}
}
]
},
{
"description": "Hyper Key + j",
"manipulators": [
{
"to": [
{
"key_code": "down_arrow"
}
],
"type": "basic",
"from": {
"key_code": "j",
"modifiers": {
"mandatory": [
"left_command",
"left_control",
"left_shift",
"left_option"
]
}
}
}
]
},
{
"description": "Hyper Key + k",
"manipulators": [
{
"to": [
{
"key_code": "up_arrow"
}
],
"type": "basic",
"from": {
"key_code": "k",
"modifiers": {
"mandatory": [
"left_command",
"left_control",
"left_shift",
"left_option"
]
}
}
}
]
},
{
"description": "Hyper Key + l",
"manipulators": [
{
"to": [
{
"key_code": "right_arrow"
}
],
"type": "basic",
"from": {
"key_code": "l",
"modifiers": {
"mandatory": [
"left_command",
"left_control",
"left_shift",
"left_option"
]
}
}
}
]
},
{
"description": "Hyper Key + f",
"manipulators": [
{
"to": [
{
"key_code": "b",
"modifiers": ["left_control"]
}
],
"type": "basic",
"from": {
"key_code": "f",
"modifiers": {
"mandatory": [
"left_command",
"left_control",
"left_shift",
"left_option"
]
}
}
}
]
} }
] ]
}, },