Skip to content

Instantly share code, notes, and snippets.

@mattdrose
Created August 27, 2015 18:52
Show Gist options
  • Save mattdrose/414d4620afc919d6edc5 to your computer and use it in GitHub Desktop.
Save mattdrose/414d4620afc919d6edc5 to your computer and use it in GitHub Desktop.
<?xml version="1.0"?>
<root>
<item>
<name>F19 to F19</name>
<appendix>(F19 to Hyper (ctrl+shift+cmd+opt) + F19 Only, send escape)</appendix>
<identifier>private.f192f19_escape</identifier>
<autogen>
--KeyOverlaidModifier--
KeyCode::F19,
KeyCode::COMMAND_L,
ModifierFlag::OPTION_L | ModifierFlag::SHIFT_L | ModifierFlag::CONTROL_L,
KeyCode::ESCAPE
</autogen>
</item>
<item>
<name>Hyper + Right/Left</name>
<appendix>hyper+right/left/down/up to ctrl+tab and ctrl+shift+tab (used for jumping tabs)</appendix>
<identifier>private.hyper_cursor</identifier>
<autogen>
__KeyToKey__
KeyCode::CURSOR_RIGHT,
ModifierFlag::OPTION_L | ModifierFlag::SHIFT_L | ModifierFlag::CONTROL_L | ModifierFlag::COMMAND_L,
KeyCode::TAB, ModifierFlag::CONTROL_L
</autogen>
<autogen>
__KeyToKey__
KeyCode::CURSOR_LEFT,
ModifierFlag::OPTION_L | ModifierFlag::SHIFT_L | ModifierFlag::CONTROL_L | ModifierFlag::COMMAND_L,
KeyCode::TAB, ModifierFlag::SHIFT_L | ModifierFlag::CONTROL_L
</autogen>
</item>
</root>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment