Skip to content

Instantly share code, notes, and snippets.

@fooqri
Last active September 12, 2017 16:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fooqri/3c4d3dfeeb608915f1696df140f3b77a to your computer and use it in GitHub Desktop.
Save fooqri/3c4d3dfeeb608915f1696df140f3b77a to your computer and use it in GitHub Desktop.
{
"title": "Change spacebar",
"rules": [
{
"description": "Change spacebar to right-option if pressed with other keys (Post spacebar when pressed alone)",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "spacebar",
"modifiers": {
"optional": [
"any"
]
}
},
"to": [
{
"key_code": "right_option"
}
],
"to_if_alone": [
{
"key_code": "spacebar"
}
]
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment