Skip to content

Instantly share code, notes, and snippets.

@pedrospdc
Last active August 3, 2017 08:52
Show Gist options
  • Save pedrospdc/4b994594258d83055a815bbdb7a87cdc to your computer and use it in GitHub Desktop.
Save pedrospdc/4b994594258d83055a815bbdb7a87cdc to your computer and use it in GitHub Desktop.
{
"title": "Change Option + Up / Down to Page Up / Down P",
"rules": [
{
"description": "Change Option + Up / Down to Page Up / Down",
"manipulators": [
{
"from": {
"key_code": "down_arrow",
"modifiers": {
"mandatory": [
"left_option"
],
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "page_down"
}
],
"type": "basic"
},
{
"from": {
"key_code": "up_arrow",
"modifiers": {
"mandatory": [
"left_option"
],
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "page_up"
}
],
"type": "basic"
}
]
}
]
}
@pedrospdc
Copy link
Author

pedrospdc commented Aug 1, 2017

karabiner://karabiner/assets/complex_modifications/import?url="https%3A%2F%2Fgist.github.com%2Fpedrospdc%2F4b994594258d83055a815bbdb7a87cdc%2Fraw%2F777da1dc31f79c21c6912a69294c31a338fa259e%2Fpage.json

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment