diff options
author | lf <software@lfcode.ca> | 2019-06-24 01:23:27 -0600 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2019-06-24 00:23:27 -0700 |
commit | 1a442f9989c825cb42b41845658874f7f9e90ba7 (patch) | |
tree | 5d3980cb61be5ee15b0241f968336f895f691bf3 | |
parent | 3915c8eb00138852a4385701c9ebc71f63654a4b (diff) |
[Docs] Reword confusing description of `TO(layer)` (#6174)
* Reword confusing description of `TO(layer)`
* Update docs/keycodes.md
Co-Authored-By: Drashna Jaelre <drashna@live.com>
-rw-r--r-- | docs/keycodes.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/keycodes.md b/docs/keycodes.md index 3ff87856e4..bd4dd61a5b 100644 --- a/docs/keycodes.md +++ b/docs/keycodes.md @@ -298,7 +298,7 @@ This is a reference only. Each group of keys links to the page documenting their |`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](https://docs.qmk.fm/#/feature_advanced_keycodes?id=mod-tap). Example Implementation: `LM(LAYER_1, MOD_LALT)`| |`LT(layer, kc)` |Turn on `layer` when held, `kc` when tapped | |`TG(layer)` |Toggle `layer` on or off | -|`TO(layer)` |Turn on `layer` when pressed | +|`TO(layer)` |Turns on `layer` and turns off all other layers, except the default layer | |`TT(layer)` |Normally acts like MO unless it's tapped multiple times, which toggles `layer` on | ## [Mouse Keys](feature_mouse_keys.md) |