periodic check-in

This commit is contained in:
Petr Nyc
2025-11-11 16:25:03 +01:00
parent 25384cbd95
commit 5715fd5577
12 changed files with 498 additions and 10 deletions

View File

@@ -68,6 +68,171 @@
}
]
},
{
"description": "Hyper Deletion",
"manipulators": [
{
"description": "option + n = delete whole line",
"from": {
"key_code": "n",
"modifiers": { "mandatory": ["left_option", "right_command", "right_control", "right_shift", "right_option"] }
},
"to": [
{
"key_code": "delete_or_backspace",
"modifiers": ["left_command"]
}
],
"type": "basic"
},
{
"description": "option + m = move line down",
"from": {
"key_code": "m",
"modifiers": { "mandatory": ["left_option", "right_command", "right_control", "right_shift", "right_option"] }
},
"to": [
{
"key_code": "down_arrow",
"modifiers": ["left_option", "left_shift"]
}
],
"type": "basic"
},
{
"description": "option + , = move line up",
"from": {
"key_code": "comma",
"modifiers": { "mandatory": ["left_option", "right_command", "right_control", "right_shift", "right_option"] }
},
"to": [
{
"key_code": "up_arrow",
"modifiers": ["left_option", "left_shift"]
}
],
"type": "basic"
},
{
"description": "option + . = delete whole line",
"from": {
"key_code": "period",
"modifiers": { "mandatory": ["left_option", "right_command", "right_control", "right_shift", "right_option"] }
},
"to": [
{
"key_code": "delete_or_backspace",
"modifiers": ["left_command"]
}
],
"type": "basic"
},
{
"description": "command + n = delete whole line",
"from": {
"key_code": "n",
"modifiers": { "mandatory": ["left_command", "right_command", "right_control", "right_shift", "right_option"] }
},
"to": [
{
"key_code": "left_arrow",
"modifiers": ["left_shift", "left_command"]
},
{ "key_code": "delete_or_backspace" }
],
"type": "basic"
},
{
"description": "command + m = delete word ahead",
"from": {
"key_code": "m",
"modifiers": { "mandatory": ["left_command", "right_command", "right_control", "right_shift", "right_option"] }
},
"to": [
{
"key_code": "delete_or_backspace",
"modifiers": ["left_option"]
}
],
"type": "basic"
},
{
"description": "command + , = delete word after",
"from": {
"key_code": "comma",
"modifiers": { "mandatory": ["left_command", "right_command", "right_control", "right_shift", "right_option"] }
},
"to": [
{
"key_code": "delete_forward",
"modifiers": ["left_option"]
}
],
"type": "basic"
},
{
"description": "command + . = delete whole line",
"from": {
"key_code": "period",
"modifiers": { "mandatory": ["left_command", "right_command", "right_control", "right_shift", "right_option"] }
},
"to": [
{
"key_code": "right_arrow",
"modifiers": ["left_shift", "left_command"]
},
{ "key_code": "delete_or_backspace" }
],
"type": "basic"
},
{
"description": "n = delete a word ahead",
"from": {
"key_code": "n",
"modifiers": { "mandatory": ["right_command", "right_control", "right_shift", "right_option"] }
},
"to": [
{
"key_code": "delete_or_backspace",
"modifiers": ["left_option"]
}
],
"type": "basic"
},
{
"description": "m = delete a char ahead",
"from": {
"key_code": "m",
"modifiers": { "mandatory": ["right_command", "right_control", "right_shift", "right_option"] }
},
"to": [{ "key_code": "delete_or_backspace" }],
"type": "basic"
},
{
"description": ", = delete a char after",
"from": {
"key_code": "comma",
"modifiers": { "mandatory": ["right_command", "right_control", "right_shift", "right_option"] }
},
"to": [{ "key_code": "delete_forward" }],
"type": "basic"
},
{
"description": ". = delete a word after",
"from": {
"key_code": "period",
"modifiers": { "mandatory": ["right_command", "right_control", "right_shift", "right_option"] }
},
"to": [
{
"key_code": "delete_forward",
"modifiers": ["left_option"]
}
],
"type": "basic"
}
]
},
{
"description": "Hyper Navigation",
"manipulators": [
@@ -2346,6 +2511,10 @@
"selected": true,
"virtual_hid_keyboard": { "keyboard_type_v2": "iso" }
},
{ "name": "test profile" }
{ "name": "test profile" },
{
"name": "New profile",
"virtual_hid_keyboard": { "keyboard_type_v2": "iso" }
}
]
}