Skip to content

Instantly share code, notes, and snippets.

@DATADEER
Created August 7, 2022 20:08
Show Gist options
  • Save DATADEER/ae6fdba46446f8429b955e4419f2c91e to your computer and use it in GitHub Desktop.
Save DATADEER/ae6fdba46446f8429b955e4419f2c91e to your computer and use it in GitHub Desktop.
{
"title": "SHIFT ARROWS",
"rules": [
{
"description": "SHIFT LEFT_ARROW",
"manipulators": [
{
"type": "basic",
"from": {
"modifiers": {
"mandatory": [
"right_gui",
"left_shift"
]
},
"key_code": "s"
},
"to": [
{
"repeat": true,
"modifiers": [
"left_shift"
],
"key_code": "left_arrow"
}
]
}
]
},
{
"description": "SHIFT RIGHT_ARROW",
"manipulators": [
{
"type": "basic",
"from": {
"modifiers": {
"mandatory": [
"right_gui",
"left_shift"
]
},
"key_code": "f"
},
"to": [
{
"repeat": true,
"modifiers": [
"left_shift"
],
"key_code": "right_arrow"
}
]
}
]
},
{
"description": "SHIFT UP_ARROW",
"manipulators": [
{
"type": "basic",
"from": {
"modifiers": {
"mandatory": [
"right_gui",
"left_shift"
]
},
"key_code": "e"
},
"to": [
{
"repeat": true,
"modifiers": [
"left_shift"
],
"key_code": "up_arrow"
}
]
}
]
},
{
"description": "SHIFT DOWN_ARROW",
"manipulators": [
{
"type": "basic",
"from": {
"modifiers": {
"mandatory": [
"right_gui",
"left_shift"
]
},
"key_code": "d"
},
"to": [
{
"repeat": true,
"modifiers": [
"left_shift"
],
"key_code": "down_arrow"
}
]
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment