diff options
author | skullY <skullydazed@gmail.com> | 2017-08-06 17:51:42 -0700 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2017-08-16 15:47:20 -0400 |
commit | 9b879b1267cd5cbebf4d73595c7ca4ed52fe5ef4 (patch) | |
tree | e47cc787fcb7745d83d6e645b21c00e498b55100 /docs/feature_bootmagic.md | |
parent | 2709744cdda808121ae91e8467659f715e68a540 (diff) | |
download | qmk_firmware-9b879b1267cd5cbebf4d73595c7ca4ed52fe5ef4.tar.gz qmk_firmware-9b879b1267cd5cbebf4d73595c7ca4ed52fe5ef4.zip |
break up keymaps and quantum keycodes into files by feature
Diffstat (limited to 'docs/feature_bootmagic.md')
-rw-r--r-- | docs/feature_bootmagic.md | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/docs/feature_bootmagic.md b/docs/feature_bootmagic.md new file mode 100644 index 000000000..3cf7d8d2a --- /dev/null +++ b/docs/feature_bootmagic.md | |||
@@ -0,0 +1,29 @@ | |||
1 | # Bootmagic | ||
2 | |||
3 | <!-- FIXME: Describe the bootmagic feature here. --> | ||
4 | |||
5 | ## Bootmagic Keycodes | ||
6 | |||
7 | Shortcuts for bootmagic options. You can use these even when bootmagic is off. | ||
8 | |||
9 | |Name|Description| | ||
10 | |----|-----------| | ||
11 | |`MAGIC_SWAP_CONTROL_CAPSLOCK`|Swap Capslock and Left Control| | ||
12 | |`MAGIC_CAPSLOCK_TO_CONTROL`|Treat Capslock like a Control Key| | ||
13 | |`MAGIC_SWAP_LALT_LGUI`|Swap the left Alt and GUI keys| | ||
14 | |`MAGIC_SWAP_RALT_RGUI`|Swap the right Alt and GUI keys| | ||
15 | |`MAGIC_NO_GUI`|Disable the GUI key| | ||
16 | |`MAGIC_SWAP_GRAVE_ESC`|Swap the Grave and Esc key.| | ||
17 | |`MAGIC_SWAP_BACKSLASH_BACKSPACE`|Swap backslack and backspace| | ||
18 | |`MAGIC_HOST_NKRO`|Force NKRO on| | ||
19 | |`MAGIC_SWAP_ALT_GUI`/`AG_SWAP`|Swap Alt and Gui on both sides| | ||
20 | |`MAGIC_UNSWAP_CONTROL_CAPSLOCK`|Disable the Control/Capslock swap| | ||
21 | |`MAGIC_UNCAPSLOCK_TO_CONTROL`|Disable treating Capslock like Control | | ||
22 | |`MAGIC_UNSWAP_LALT_LGUI`|Disable Left Alt and GUI switching| | ||
23 | |`MAGIC_UNSWAP_RALT_RGUI`|Disable Right Alt and GUI switching| | ||
24 | |`MAGIC_UNNO_GUI`|Enable the GUI key | | ||
25 | |`MAGIC_UNSWAP_GRAVE_ESC`|Disable the Grave/Esc swap | | ||
26 | |`MAGIC_UNSWAP_BACKSLASH_BACKSPACE`|Disable the backslash/backspace swap| | ||
27 | |`MAGIC_UNHOST_NKRO`|Force NKRO off| | ||
28 | |`MAGIC_UNSWAP_ALT_GUI`/`AG_NORM`|Disable the Alt/GUI switching| | ||
29 | |`MAGIC_TOGGLE_NKRO`|Turn NKRO on or off| | ||