Skip to content

Instantly share code, notes, and snippets.

@ijoseph
Created November 9, 2020 06:06
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ijoseph/dd136b7bdf622bbe54f7339db052df5e to your computer and use it in GitHub Desktop.
Save ijoseph/dd136b7bdf622bbe54f7339db052df5e to your computer and use it in GitHub Desktop.
Option-G to Option-Command-G MacOS
{
"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"
]
}
]
}
]
}
]
}
Copy link

ghost commented Sep 12, 2021

Hello. Can you guild me how to use it in Karabiner? I want to disable special character when type option + letter.

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