aboutsummaryrefslogtreecommitdiff
path: root/docs/Key-Functions.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/Key-Functions.md')
-rw-r--r--docs/Key-Functions.md23
1 files changed, 23 insertions, 0 deletions
diff --git a/docs/Key-Functions.md b/docs/Key-Functions.md
index 955a28061..228fea8ac 100644
--- a/docs/Key-Functions.md
+++ b/docs/Key-Functions.md
@@ -92,3 +92,26 @@ We've added shortcuts to make common modifier/tap (mod-tap) mappings more compac
92 * `ALL_T(kc)` - is Hyper (all mods) when held and *kc* when tapped. To read more about what you can do with a Hyper key, see [this blog post by Brett Terpstra](http://brettterpstra.com/2012/12/08/a-useful-caps-lock-key/) 92 * `ALL_T(kc)` - is Hyper (all mods) when held and *kc* when tapped. To read more about what you can do with a Hyper key, see [this blog post by Brett Terpstra](http://brettterpstra.com/2012/12/08/a-useful-caps-lock-key/)
93 * `LCAG_T(kc)` - is CtrlAltGui when held and *kc* when tapped 93 * `LCAG_T(kc)` - is CtrlAltGui when held and *kc* when tapped
94 * `MEH_T(kc)` - is like Hyper, but not as cool -- does not include the Cmd/Win key, so just sends Alt+Ctrl+Shift. 94 * `MEH_T(kc)` - is like Hyper, but not as cool -- does not include the Cmd/Win key, so just sends Alt+Ctrl+Shift.
95
96##### Permissive Hold
97
98As of [PR#1359](https://github.com/qmk/qmk_firmware/pull/1359/), there is a new `config.h` option:
99
100```
101#define PERMISSIVE_HOLD
102```
103
104This makes it easier for fast typists to use dual-function keys. As described in the PR:
105
106Without this, if you let go of a held key inside the tapping term, it won't register.
107
108Example: (Tapping Term = 200)
109
110- SHFT_T(KC_A) Down
111- KC_X Down
112- KC_X Up
113- SHFT_T(KC_A) Up
114
115With permissive hold, if above is typed within tapping term, this will emit `X` (so, Shift+X).
116
117With defaults, if above is typed within tapping term, this will emit `ax`, which I doubt is what anyone really wants