Created
November 9, 2020 06:06
-
-
Save ijoseph/dd136b7bdf622bbe54f7339db052df5e to your computer and use it in GitHub Desktop.
Option-G to Option-Command-G MacOS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"title": "Remap Useless Option Symbol Keys", | |
"rules": [ | |
{ | |
"description": "Remap Option-G to Option-Command-G", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": { | |
"key_code": "g", | |
"modifiers": { | |
"mandatory": [ | |
"option" | |
] | |
} | |
}, | |
"to": [ | |
{ | |
"key_code": "g", | |
"modifiers": [ | |
"left_option", | |
"left_command" | |
] | |
} | |
] | |
} | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello. Can you guild me how to use it in Karabiner? I want to disable special character when type
option + letter
.