aboutsummaryrefslogtreecommitdiff
path: root/docs/feature_command.md
diff options
context:
space:
mode:
authorfauxpark <fauxpark@gmail.com>2018-07-30 14:08:59 +1000
committerDrashna Jaelre <drashna@live.com>2018-07-29 21:08:59 -0700
commit25d757284ca2b1c0303faf5749b123a38579476a (patch)
treecd87b19dc877fdcf40744215b662ade28488bfbe /docs/feature_command.md
parent841ea7ceb64648b14b44909745b13e127327be15 (diff)
downloadqmk_firmware-25d757284ca2b1c0303faf5749b123a38579476a.tar.gz
qmk_firmware-25d757284ca2b1c0303faf5749b123a38579476a.zip
Docs: Fix Command docs escaping (#3523)
Diffstat (limited to 'docs/feature_command.md')
-rw-r--r--docs/feature_command.md64
1 files changed, 32 insertions, 32 deletions
diff --git a/docs/feature_command.md b/docs/feature_command.md
index 1e03f7ebd..ca2ecce0d 100644
--- a/docs/feature_command.md
+++ b/docs/feature_command.md
@@ -16,35 +16,35 @@ To use Command, hold down the key combination defined by the `IS_COMMAND()` macr
16 16
17If you would like to change the key assignments for Command, `#define` these in your `config.h` at either the keyboard or keymap level. All keycode assignments here must omit the `KC_` prefix. 17If you would like to change the key assignments for Command, `#define` these in your `config.h` at either the keyboard or keymap level. All keycode assignments here must omit the `KC_` prefix.
18 18
19|Define |Default |Description | 19|Define |Default |Description |
20|------------------------------------|----------------------------------------------------------------------------------------|------------------------------------------------| 20|------------------------------------|--------------------------------------------------------------------------------------|------------------------------------------------|
21|`IS_COMMAND()` |`(keyboard_report->mods == (MOD_BIT(KC_LSHIFT) <code>&#124;</code> MOD_BIT(KC_RSHIFT)))`|The key combination to activate Command | 21|`IS_COMMAND()` |<code>(keyboard_report->mods == (MOD_BIT(KC_LSHIFT) &#124; MOD_BIT(KC_RSHIFT)))</code>|The key combination to activate Command |
22|`MAGIC_KEY_SWITCH_LAYER_WITH_FKEYS` |`true` |Set default layer with the Function row | 22|`MAGIC_KEY_SWITCH_LAYER_WITH_FKEYS` |`true` |Set default layer with the Function row |
23|`MAGIC_KEY_SWITCH_LAYER_WITH_NKEYS` |`true` |Set default layer with the number keys | 23|`MAGIC_KEY_SWITCH_LAYER_WITH_NKEYS` |`true` |Set default layer with the number keys |
24|`MAGIC_KEY_SWITCH_LAYER_WITH_CUSTOM`|`false` |Set default layer with `MAGIC_KEY_LAYER0..9` | 24|`MAGIC_KEY_SWITCH_LAYER_WITH_CUSTOM`|`false` |Set default layer with `MAGIC_KEY_LAYER0..9` |
25|`MAGIC_KEY_DEBUG` |`D` |Toggle debugging over serial | 25|`MAGIC_KEY_DEBUG` |`D` |Toggle debugging over serial |
26|`MAGIC_KEY_DEBUG_MATRIX` |`X` |Toggle key matrix debugging | 26|`MAGIC_KEY_DEBUG_MATRIX` |`X` |Toggle key matrix debugging |
27|`MAGIC_KEY_DEBUG_KBD` |`K` |Toggle keyboard debugging | 27|`MAGIC_KEY_DEBUG_KBD` |`K` |Toggle keyboard debugging |
28|`MAGIC_KEY_DEBUG_MOUSE` |`M` |Toggle mouse debugging | 28|`MAGIC_KEY_DEBUG_MOUSE` |`M` |Toggle mouse debugging |
29|`MAGIC_KEY_CONSOLE` |`C` |Enable the Command console | 29|`MAGIC_KEY_CONSOLE` |`C` |Enable the Command console |
30|`MAGIC_KEY_VERSION` |`V` |Print the running QMK version to the console | 30|`MAGIC_KEY_VERSION` |`V` |Print the running QMK version to the console |
31|`MAGIC_KEY_STATUS` |`S` |Print the current keyboard status to the console| 31|`MAGIC_KEY_STATUS` |`S` |Print the current keyboard status to the console|
32|`MAGIC_KEY_HELP1` |`H` |Print Command help to the console | 32|`MAGIC_KEY_HELP1` |`H` |Print Command help to the console |
33|`MAGIC_KEY_HELP2` |`SLASH` |Print Command help to the console (alternate) | 33|`MAGIC_KEY_HELP2` |`SLASH` |Print Command help to the console (alternate) |
34|`MAGIC_KEY_LAYER0` |`0` |Make layer 0 the default layer | 34|`MAGIC_KEY_LAYER0` |`0` |Make layer 0 the default layer |
35|`MAGIC_KEY_LAYER1` |`1` |Make layer 1 the default layer | 35|`MAGIC_KEY_LAYER1` |`1` |Make layer 1 the default layer |
36|`MAGIC_KEY_LAYER2` |`2` |Make layer 2 the default layer | 36|`MAGIC_KEY_LAYER2` |`2` |Make layer 2 the default layer |
37|`MAGIC_KEY_LAYER3` |`3` |Make layer 3 the default layer | 37|`MAGIC_KEY_LAYER3` |`3` |Make layer 3 the default layer |
38|`MAGIC_KEY_LAYER4` |`4` |Make layer 4 the default layer | 38|`MAGIC_KEY_LAYER4` |`4` |Make layer 4 the default layer |
39|`MAGIC_KEY_LAYER5` |`5` |Make layer 5 the default layer | 39|`MAGIC_KEY_LAYER5` |`5` |Make layer 5 the default layer |
40|`MAGIC_KEY_LAYER6` |`6` |Make layer 6 the default layer | 40|`MAGIC_KEY_LAYER6` |`6` |Make layer 6 the default layer |
41|`MAGIC_KEY_LAYER7` |`7` |Make layer 7 the default layer | 41|`MAGIC_KEY_LAYER7` |`7` |Make layer 7 the default layer |
42|`MAGIC_KEY_LAYER8` |`8` |Make layer 8 the default layer | 42|`MAGIC_KEY_LAYER8` |`8` |Make layer 8 the default layer |
43|`MAGIC_KEY_LAYER9` |`9` |Make layer 9 the default layer | 43|`MAGIC_KEY_LAYER9` |`9` |Make layer 9 the default layer |
44|`MAGIC_KEY_LAYER0_ALT1` |`ESC` |Make layer 0 the default layer (alternate) | 44|`MAGIC_KEY_LAYER0_ALT1` |`ESC` |Make layer 0 the default layer (alternate) |
45|`MAGIC_KEY_LAYER0_ALT2` |`GRAVE` |Make layer 0 the default layer (alternate) | 45|`MAGIC_KEY_LAYER0_ALT2` |`GRAVE` |Make layer 0 the default layer (alternate) |
46|`MAGIC_KEY_BOOTLOADER` |`PAUSE` |Enter the bootloader | 46|`MAGIC_KEY_BOOTLOADER` |`PAUSE` |Enter the bootloader |
47|`MAGIC_KEY_LOCK` |`CAPS` |Lock the keyboard so nothing can be typed | 47|`MAGIC_KEY_LOCK` |`CAPS` |Lock the keyboard so nothing can be typed |
48|`MAGIC_KEY_EEPROM` |`E` |Clear the EEPROM | 48|`MAGIC_KEY_EEPROM` |`E` |Clear the EEPROM |
49|`MAGIC_KEY_NKRO` |`N` |Toggle N-Key Rollover (NKRO) | 49|`MAGIC_KEY_NKRO` |`N` |Toggle N-Key Rollover (NKRO) |
50|`MAGIC_KEY_SLEEP_LED` |`Z` |Toggle LED when computer is sleeping | 50|`MAGIC_KEY_SLEEP_LED` |`Z` |Toggle LED when computer is sleeping |