diff options
Diffstat (limited to 'docs/keycodes_magic.md')
-rw-r--r-- | docs/keycodes_magic.md | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/docs/keycodes_magic.md b/docs/keycodes_magic.md new file mode 100644 index 000000000..719d82031 --- /dev/null +++ b/docs/keycodes_magic.md | |||
@@ -0,0 +1,35 @@ | |||
1 | # Magic Keycodes :id=magic-keycodes | ||
2 | |||
3 | **Magic Keycodes** are prefixed with `MAGIC_`, and allow you to access the functionality of the deprecated Bootmagic feature *after* your keyboard has initialized. To use the keycodes, assign them to your keymap as you would any other keycode. | ||
4 | |||
5 | |Key |Aliases |Description | | ||
6 | |----------------------------------|---------|--------------------------------------------------------------------------| | ||
7 | |`MAGIC_SWAP_CONTROL_CAPSLOCK` |`CL_SWAP`|Swap Caps Lock and Left Control | | ||
8 | |`MAGIC_UNSWAP_CONTROL_CAPSLOCK` |`CL_NORM`|Unswap Caps Lock and Left Control | | ||
9 | |`MAGIC_CAPSLOCK_TO_CONTROL` |`CL_CTRL`|Treat Caps Lock as Control | | ||
10 | |`MAGIC_UNCAPSLOCK_TO_CONTROL` |`CL_CAPS`|Stop treating Caps Lock as Control | | ||
11 | |`MAGIC_SWAP_LCTL_LGUI` |`LCG_SWP`|Swap Left Control and GUI | | ||
12 | |`MAGIC_UNSWAP_LCTL_LGUI` |`LCG_NRM`|Unswap Left Control and GUI | | ||
13 | |`MAGIC_SWAP_RCTL_RGUI` |`RCG_SWP`|Swap Right Control and GUI | | ||
14 | |`MAGIC_UNSWAP_RCTL_RGUI` |`RCG_NRM`|Unswap Right Control and GUI | | ||
15 | |`MAGIC_SWAP_CTL_GUI` |`CG_SWAP`|Swap Control and GUI on both sides | | ||
16 | |`MAGIC_UNSWAP_CTL_GUI` |`CG_NORM`|Unswap Control and GUI on both sides | | ||
17 | |`MAGIC_TOGGLE_CTL_GUI` |`CG_TOGG`|Toggle Control and GUI swap on both sides | | ||
18 | |`MAGIC_SWAP_LALT_LGUI` |`LAG_SWP`|Swap Left Alt and GUI | | ||
19 | |`MAGIC_UNSWAP_LALT_LGUI` |`LAG_NRM`|Unswap Left Alt and GUI | | ||
20 | |`MAGIC_SWAP_RALT_RGUI` |`RAG_SWP`|Swap Right Alt and GUI | | ||
21 | |`MAGIC_UNSWAP_RALT_RGUI` |`RAG_NRM`|Unswap Right Alt and GUI | | ||
22 | |`MAGIC_SWAP_ALT_GUI` |`AG_SWAP`|Swap Alt and GUI on both sides | | ||
23 | |`MAGIC_UNSWAP_ALT_GUI` |`AG_NORM`|Unswap Alt and GUI on both sides | | ||
24 | |`MAGIC_TOGGLE_ALT_GUI` |`AG_TOGG`|Toggle Alt and GUI swap on both sides | | ||
25 | |`MAGIC_NO_GUI` |`GUI_OFF`|Disable the GUI keys | | ||
26 | |`MAGIC_UNNO_GUI` |`GUI_ON` |Enable the GUI keys | | ||
27 | |`MAGIC_SWAP_GRAVE_ESC` |`GE_SWAP`|Swap <code>`</code> and Escape | | ||
28 | |`MAGIC_UNSWAP_GRAVE_ESC` |`GE_NORM`|Unswap <code>`</code> and Escape | | ||
29 | |`MAGIC_SWAP_BACKSLASH_BACKSPACE` |`BS_SWAP`|Swap `\` and Backspace | | ||
30 | |`MAGIC_UNSWAP_BACKSLASH_BACKSPACE`|`BS_NORM`|Unswap `\` and Backspace | | ||
31 | |`MAGIC_HOST_NKRO` |`NK_ON` |Enable N-key rollover | | ||
32 | |`MAGIC_UNHOST_NKRO` |`NK_OFF` |Disable N-key rollover | | ||
33 | |`MAGIC_TOGGLE_NKRO` |`NK_TOGG`|Toggle N-key rollover | | ||
34 | |`MAGIC_EE_HANDS_LEFT` |`EH_LEFT`|Set the master half of a split keyboard as the left hand (for `EE_HANDS`) | | ||
35 | |`MAGIC_EE_HANDS_RIGHT` |`EH_RGHT`|Set the master half of a split keyboard as the right hand (for `EE_HANDS`)| | ||