Last active
December 21, 2015 13:49
-
-
Save smithjw/6315273 to your computer and use it in GitHub Desktop.
Example of how to map a double-tap of a modifier (⇧ / ^ / ⌥ / ⌘) to another keyboard shortcut. In this example ⇧^⌥⌘0
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
<item> | |
<name>Double Control</name> | |
<appendix>Doubletap ^ to ⇧^⌥⌘0</appendix> | |
<identifier>private.smithjw.DoubleControl</identifier> | |
<autogen> | |
--DoublePressModifier-- | |
KeyCode::CONTROL_L, | |
KeyCode::CONTROL_L, | |
KeyCode::KEY_0, ModifierFlag::SHIFT_L | ModifierFlag::CONTROL_L | ModifierFlag::OPTION_L | ModifierFlag::COMMAND_L | |
</autogen> | |
</item> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment