diff options
author | Ryan <fauxpark@gmail.com> | 2022-10-26 03:50:22 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-25 17:50:22 +0100 |
commit | 812001de7fd0926f59fd399550f902ef4ec03ee6 (patch) | |
tree | 2da1fc8208911e6cee39258082f56ddcfc43fd43 /docs | |
parent | 1d34f380eb2717169c59fb4eb59bb1824a1f7187 (diff) |
Deprecate `ONESHOT_*` keycodes for `QK_ONE_SHOT_*` (#18844)
* Deprecate `ONESHOT_*` keycodes for `QK_ONE_SHOT_*`
* Docs
Diffstat (limited to 'docs')
-rw-r--r-- | docs/keycodes.md | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/docs/keycodes.md b/docs/keycodes.md index b541975640..230f88456b 100644 --- a/docs/keycodes.md +++ b/docs/keycodes.md @@ -736,13 +736,13 @@ See also: [US ANSI Shifted Symbols](keycodes_us_ansi_shifted.md) See also: [One Shot Keys](one_shot_keys.md) -|Key |Description | -|------------|----------------------------------| -|`OSM(mod)` |Hold `mod` for one keypress | -|`OSL(layer)`|Switch to `layer` for one keypress| -|`OS_ON` |Turns One Shot keys on | -|`OS_OFF` |Turns One Shot keys off | -|`OS_TOGG` |Toggles One Shot keys status | +|Key |Aliases |Description | +|--------------------|---------|----------------------------------| +|`OSM(mod)` | |Hold `mod` for one keypress | +|`OSL(layer)` | |Switch to `layer` for one keypress| +|`QK_ONE_SHOT_TOGGLE`|`OS_TOGG`|Toggles One Shot keys status | +|`QK_ONE_SHOT_ON` |`OS_ON` |Turns One Shot keys on | +|`QK_ONE_SHOT_OFF` |`OS_OFF` |Turns One Shot keys off | ## Programmable Button Support :id=programmable-button |