aboutsummaryrefslogtreecommitdiff
path: root/docs/feature_advanced_keycodes.md
diff options
context:
space:
mode:
authormmikeww <mmikeww@users.noreply.github.com>2017-11-27 12:52:39 -0500
committerJack Humbert <jack.humb@gmail.com>2017-12-03 00:03:04 -0500
commit0740e84d63fd51c892556f1746496802e26f9b99 (patch)
tree642f332e23adab67e9f86a904c5d58923820a660 /docs/feature_advanced_keycodes.md
parentc9178882620a91f2bffc1b4ac03194f70775c64a (diff)
downloadqmk_firmware-0740e84d63fd51c892556f1746496802e26f9b99.tar.gz
qmk_firmware-0740e84d63fd51c892556f1746496802e26f9b99.zip
update advanced_keycodes; oneshot = sticky/dead 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 035553738..0acb26598 100644
--- a/docs/feature_advanced_keycodes.md
+++ b/docs/feature_advanced_keycodes.md
@@ -131,7 +131,7 @@ We've added shortcuts to make common modifier/tap (mod-tap) mappings more compac
131 131
132# One Shot Keys 132# One Shot Keys
133 133
134One shot keys are keys that remain active until the next key is pressed, and then are releasd. This allows you to type keyboard combinations without pressing more than one key at a time. 134One shot keys are keys that remain active until the next key is pressed, and then are released. This allows you to type keyboard combinations without pressing more than one key at a time. These keys are usually called "Sticky keys" or "Dead keys".
135 135
136For example, if you define a key as `OSM(MOD_LSFT)`, you can type a capital A character by first pressing and releasing shift, and then pressing and releasing A. Your computer will see the shift key being held the moment shift is pressed, and it will see the shift key being released immediately after A is released. 136For example, if you define a key as `OSM(MOD_LSFT)`, you can type a capital A character by first pressing and releasing shift, and then pressing and releasing A. Your computer will see the shift key being held the moment shift is pressed, and it will see the shift key being released immediately after A is released.
137 137