aboutsummaryrefslogtreecommitdiff
path: root/docs/keycodes.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/keycodes.md')
-rw-r--r--docs/keycodes.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/keycodes.md b/docs/keycodes.md
index 91051e716..f207c523e 100644
--- a/docs/keycodes.md
+++ b/docs/keycodes.md
@@ -312,8 +312,8 @@ This is a reference only. Each group of keys links to the page documenting their
312|----------------|----------------------------------------------------------------------------------| 312|----------------|----------------------------------------------------------------------------------|
313|`DF(layer)` |Set the base (default) layer | 313|`DF(layer)` |Set the base (default) layer |
314|`MO(layer)` |Momentarily turn on `layer` when pressed (requires `KC_TRNS` on destination layer)| 314|`MO(layer)` |Momentarily turn on `layer` when pressed (requires `KC_TRNS` on destination layer)|
315|`OSL(layer)` |Momentarily activates `layer` until a key is pressed. See [One Shot Keys](feature_advanced_keycodes#one-shot-keys) for details. | 315|`OSL(layer)` |Momentarily activates `layer` until a key is pressed. See [One Shot Keys](one_shot_keys.md) for details. |
316|`LM(layer, mod)`|Momentarily turn on `layer` (like MO) with `mod` active as well. Where `mod` is a mods_bit. Mods can be viewed [here](feature_advanced_keycodes#mod-tap). Example Implementation: `LM(LAYER_1, MOD_LALT)`| 316|`LM(layer, mod)`|Momentarily turn on `layer` (like MO) with `mod` active as well. Where `mod` is a mods_bit. Mods can be viewed [here](mod_tap.md). Example Implementation: `LM(LAYER_1, MOD_LALT)`|
317|`LT(layer, kc)` |Turn on `layer` when held, `kc` when tapped | 317|`LT(layer, kc)` |Turn on `layer` when held, `kc` when tapped |
318|`TG(layer)` |Toggle `layer` on or off | 318|`TG(layer)` |Toggle `layer` on or off |
319|`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 |
@@ -366,7 +366,7 @@ This is a reference only. Each group of keys links to the page documenting their
366|`KC_MEH` | |Left Control, Shift and Alt | 366|`KC_MEH` | |Left Control, Shift and Alt |
367|`KC_HYPR` | |Left Control, Shift, Alt and GUI | 367|`KC_HYPR` | |Left Control, Shift, Alt and GUI |
368 368
369## [Mod-Tap Keys](feature_advanced_keycodes.md#mod-tap) 369## [Mod-Tap Keys](mod_tap.md)
370 370
371|Key |Aliases |Description | 371|Key |Aliases |Description |
372|-------------|-----------------------------------------------------------------|-------------------------------------------------------| 372|-------------|-----------------------------------------------------------------|-------------------------------------------------------|
@@ -459,7 +459,7 @@ This is a reference only. Each group of keys links to the page documenting their
459|`KC_RIGHT_ANGLE_BRACKET`|`KC_RABK`, `KC_GT` |`>` | 459|`KC_RIGHT_ANGLE_BRACKET`|`KC_RABK`, `KC_GT` |`>` |
460|`KC_QUESTION` |`KC_QUES` |`?` | 460|`KC_QUESTION` |`KC_QUES` |`?` |
461 461
462## [One Shot Keys](feature_advanced_keycodes.md#one-shot-keys) 462## [One Shot Keys](one_shot_keys.md)
463 463
464|Key |Description | 464|Key |Description |
465|------------|----------------------------------| 465|------------|----------------------------------|