aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/keycodes.md33
-rw-r--r--docs/quantum_keycodes.md13
2 files changed, 29 insertions, 17 deletions
diff --git a/docs/keycodes.md b/docs/keycodes.md
index dd4c4418b..c151c5700 100644
--- a/docs/keycodes.md
+++ b/docs/keycodes.md
@@ -208,14 +208,11 @@ This is a reference only. Each group of keys links to the page documenting their
208 208
209## [Quantum Keycodes](quantum_keycodes.md#qmk-keycodes) 209## [Quantum Keycodes](quantum_keycodes.md#qmk-keycodes)
210 210
211|Key |Aliases |Description | 211|Key |Aliases |Description |
212|---------------|-----------|---------------------------------------------------------------------| 212|--------------|---------|-------------------------------------------------------|
213|`RESET` | |Put the keyboard into DFU mode for flashing | 213|`RESET` | |Put the keyboard into bootloader mode for flashing |
214|`DEBUG` | |Toggle debug mode | 214|`DEBUG` | |Toggle debug mode |
215|`EEPROM_RESET` |`EEP_RST` |Resets EEPROM state by reinitializing it | 215|`EEPROM_RESET`|`EEP_RST`|Reinitializes the keyboard's EEPROM (persistent memory)|
216|`KC_GESC` |`GRAVE_ESC`|Escape when tapped, <code>&#96;</code> when pressed with Shift or GUI|
217|`KC_LEAD` | |The [Leader key](feature_leader_key.md) |
218|`KC_LOCK` | |The [Lock key](feature_key_lock.md) |
219 216
220## [Audio Keys](feature_audio.md) 217## [Audio Keys](feature_audio.md)
221 218
@@ -289,7 +286,7 @@ This is a reference only. Each group of keys links to the page documenting their
289 286
290## [Dynamic Macros](feature_dynamic_macros.md) 287## [Dynamic Macros](feature_dynamic_macros.md)
291 288
292|Key |Alias |Description | 289|Key |Aliases |Description |
293|-----------------|---------|--------------------------------------------------| 290|-----------------|---------|--------------------------------------------------|
294|`DYN_REC_START1` |`DM_REC1`|Start recording Macro 1 | 291|`DYN_REC_START1` |`DM_REC1`|Start recording Macro 1 |
295|`DYN_REC_START2` |`DM_REC2`|Start recording Macro 2 | 292|`DYN_REC_START2` |`DM_REC2`|Start recording Macro 2 |
@@ -297,6 +294,18 @@ This is a reference only. Each group of keys links to the page documenting their
297|`DYN_MACRO_PLAY2`|`DM_PLY2`|Replay Macro 2 | 294|`DYN_MACRO_PLAY2`|`DM_PLY2`|Replay Macro 2 |
298|`DYN_REC_STOP` |`DM_RSTP`|Finish the macro that is currently being recorded.| 295|`DYN_REC_STOP` |`DM_RSTP`|Finish the macro that is currently being recorded.|
299 296
297## [Grave Escape](feature_grave_esc.md)
298
299|Key |Aliases |Description |
300|-----------|---------|------------------------------------------------------------------|
301|`GRAVE_ESC`|`KC_GESC`|Escape when pressed, <code>&#96;</code> when Shift or GUI are held|
302
303## [Key Lock](feature_key_lock.md)
304
305|Key |Description |
306|---------|--------------------------------------------------------------|
307|`KC_LOCK`|Hold down the next key pressed, until the key is pressed again|
308
300## [Layer Switching](feature_advanced_keycodes.md#switching-and-toggling-layers) 309## [Layer Switching](feature_advanced_keycodes.md#switching-and-toggling-layers)
301 310
302|Key |Description | 311|Key |Description |
@@ -310,6 +319,12 @@ This is a reference only. Each group of keys links to the page documenting their
310|`TO(layer)` |Turns on `layer` and turns off all other layers, except the default layer | 319|`TO(layer)` |Turns on `layer` and turns off all other layers, except the default layer |
311|`TT(layer)` |Normally acts like MO unless it's tapped multiple times, which toggles `layer` on | 320|`TT(layer)` |Normally acts like MO unless it's tapped multiple times, which toggles `layer` on |
312 321
322## [Leader Key](feature_leader_key.md)
323
324|Key |Description |
325|---------|------------------------|
326|`KC_LEAD`|Begins a leader sequence|
327
313## [Mouse Keys](feature_mouse_keys.md) 328## [Mouse Keys](feature_mouse_keys.md)
314 329
315|Key |Aliases |Description | 330|Key |Aliases |Description |
diff --git a/docs/quantum_keycodes.md b/docs/quantum_keycodes.md
index 26ce6d244..969849cda 100644
--- a/docs/quantum_keycodes.md
+++ b/docs/quantum_keycodes.md
@@ -8,11 +8,8 @@ On this page we have documented keycodes between `0x00FF` and `0xFFFF` which are
8 8
9## QMK Keycodes 9## QMK Keycodes
10 10
11|Key |Aliases |Description | 11|Key |Aliases |Description |
12|---------------|-----------|---------------------------------------------------------------------| 12|--------------|---------|-------------------------------------------------------|
13|`RESET` | |Put the keyboard into DFU mode for flashing | 13|`RESET` | |Put the keyboard into bootloader mode for flashing |
14|`DEBUG` | |Toggle debug mode | 14|`DEBUG` | |Toggle debug mode |
15|`EEPROM_RESET` |`EEP_RST` |Resets EEPROM state by reinitializing it | 15|`EEPROM_RESET`|`EEP_RST`|Reinitializes the keyboard's EEPROM (persistent memory)|
16|`KC_GESC` |`GRAVE_ESC`|Escape when tapped, <code>&#96;</code> when pressed with Shift or GUI|
17|`KC_LEAD` | |The [Leader key](feature_leader_key.md) |
18|`KC_LOCK` | |The [Lock key](feature_key_lock.md) |