summaryrefslogtreecommitdiffstats
path: root/docs/feature_advanced_keycodes.md
diff options
context:
space:
mode:
authorBrian Choromanski <BrianChoromanski@gmail.com>2018-10-09 19:20:09 +0200
committerDrashna Jaelre <drashna@live.com>2018-10-09 19:27:03 +0200
commit7f6bb82b9daf51fb79972871e9f85696f783aa7a (patch)
tree0e1610489de09dbab35a826ad9f55164146f24a8 /docs/feature_advanced_keycodes.md
parent04e28470bcf22b05ca2bd52746c2254cae281836 (diff)
downloadqmk_firmware-7f6bb82b9daf51fb79972871e9f85696f783aa7a.tar.gz
qmk_firmware-7f6bb82b9daf51fb79972871e9f85696f783aa7a.tar.xz
Added link to One Shot Keys
Diffstat (limited to 'docs/feature_advanced_keycodes.md')
-rw-r--r--docs/feature_advanced_keycodes.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/feature_advanced_keycodes.md b/docs/feature_advanced_keycodes.md
index 0f5b8618a..2ca533a28 100644
--- a/docs/feature_advanced_keycodes.md
+++ b/docs/feature_advanced_keycodes.md
@@ -27,7 +27,7 @@ These functions allow you to activate layers in various ways. Note that layers a
* `MO(layer)` - momentarily activates *layer*. As soon as you let go of the key, the layer is deactivated.
* `LM(layer, mod)` - Momentarily activates *layer* (like `MO`), but with modifier(s) *mod* active. Only supports layers 0-15 and the left modifiers.
* `LT(layer, kc)` - momentarily activates *layer* when held, and sends *kc* when tapped.
-* `OSL(layer)` - momentarily activates *layer* until the next key is pressed.
+* `OSL(layer)` - momentarily activates *layer* until the next key is pressed. See [One Shot Keys.](#one-shot-keys)
* `TG(layer)` - toggles *layer*, activating it if it's inactive and vice versa
* `TO(layer)` - activates *layer* and de-activates all other layers (except your default layer). This function is special, because instead of just adding/removing one layer to your active layer stack, it will completely replace your current active layers, uniquely allowing you to replace higher layers with a lower one. This is activated on keydown (as soon as the key is pressed).
* `TT(layer)` - Layer Tap-Toggle. If you hold the key down, *layer* is activated, and then is de-activated when you let go (like `MO`). If you repeatedly tap it, the layer will be toggled on or off (like `TG`). It needs 5 taps by default, but you can change this by defining `TAPPING_TOGGLE` -- for example, `#define TAPPING_TOGGLE 2` to toggle on just two taps.