71 lines
1.4 KiB
JSON
71 lines
1.4 KiB
JSON
{
|
|
"title": "Left ctrl + hjkl to Arrow Keys Vim",
|
|
"rules": [
|
|
{
|
|
"description": "Left ctrl + hjkl to arrow keys Vim",
|
|
"manipulators": [
|
|
{
|
|
"from": {
|
|
"key_code": "h",
|
|
"modifiers": {
|
|
"mandatory": ["left_control"],
|
|
"optional": ["any"]
|
|
}
|
|
},
|
|
"to": [
|
|
{
|
|
"key_code": "left_arrow"
|
|
}
|
|
],
|
|
"type": "basic"
|
|
},
|
|
{
|
|
"from": {
|
|
"key_code": "j",
|
|
"modifiers": {
|
|
"mandatory": ["left_control"],
|
|
"optional": ["any"]
|
|
}
|
|
},
|
|
"to": [
|
|
{
|
|
"key_code": "down_arrow"
|
|
}
|
|
],
|
|
"type": "basic"
|
|
},
|
|
{
|
|
"from": {
|
|
"key_code": "k",
|
|
"modifiers": {
|
|
"mandatory": ["left_control"],
|
|
"optional": ["any"]
|
|
}
|
|
},
|
|
"to": [
|
|
{
|
|
"key_code": "up_arrow"
|
|
}
|
|
],
|
|
"type": "basic"
|
|
},
|
|
{
|
|
"from": {
|
|
"key_code": "l",
|
|
"modifiers": {
|
|
"mandatory": ["left_control"],
|
|
"optional": ["any"]
|
|
}
|
|
},
|
|
"to": [
|
|
{
|
|
"key_code": "right_arrow"
|
|
}
|
|
],
|
|
"type": "basic"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|