periodic check-in
This commit is contained in:
@@ -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" }
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -89,7 +89,7 @@ filepos_max_saved_entries=1024
|
||||
|
||||
[Layout]
|
||||
output_lines=0
|
||||
left_panel_size=110
|
||||
left_panel_size=86
|
||||
top_panel_size=0
|
||||
message_visible=true
|
||||
keybar_visible=true
|
||||
|
||||
Reference in New Issue
Block a user