summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJack Humbert2017-05-27 11:03:34 -0400
committerGitHub2017-05-27 11:03:34 -0400
commite229dcadb5c9f8c09f14a439fe5a4c7c48ba2249 (patch)
treebff5a023ff2e67fa8c303a386240cd3fc7936f74
parentbb2a8c36119dd63d4a8fd483ddd493795ec2bfc3 (diff)
parente7fccabb1cd855948fb8f248d607b6c6d61d0ea5 (diff)
Merge pull request #5 from Maartenwut/patch-1
Mention that TT needs 5 taps by default.
-rw-r--r--Key-Functions.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/Key-Functions.md b/Key-Functions.md
index 6779982c3..955a28061 100644
--- a/Key-Functions.md
+++ b/Key-Functions.md
@@ -18,7 +18,7 @@ Instead of using `FNx` when defining `ACTION_*` functions, you can use `F(x)` -
`TO(layer)` - Goes to a layer. This code is special, because it lets you go either up or down the stack -- just goes directly to the layer you want. So while other codes only let you go _up_ the stack (from layer 0 to layer 3, for example), `TO(2)` is going to get you to layer 2, no matter where you activate it from -- even if you're currently on layer 5. This gets activated on keydown (as soon as the key is pressed).
-`TT(layer)` - Layer Tap-Toggle. If you hold the key down, the layer becomes active, and then deactivates when you let go. And if you tap it, the layer simply becomes active (toggles on).
+`TT(layer)` - Layer Tap-Toggle. If you hold the key down, the layer becomes active, and then deactivates when you let go. And if you tap it, the layer simply becomes active (toggles on). It needs 5 taps by default, but you can set it by defining `TAPPING_TOGGLE`, for example, `#define TAPPING_TOGGLE 1` for just one tap.
### Fun with modifier keys
@@ -91,4 +91,4 @@ We've added shortcuts to make common modifier/tap (mod-tap) mappings more compac
* `GUI_T(kc)` - is LGUI when held and *kc* when tapped
* `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/)
* `LCAG_T(kc)` - is CtrlAltGui when held and *kc* when tapped
- * `MEH_T(kc)` - is like Hyper, but not as cool -- does not include the Cmd/Win key, so just sends Alt+Ctrl+Shift. \ No newline at end of file
+ * `MEH_T(kc)` - is like Hyper, but not as cool -- does not include the Cmd/Win key, so just sends Alt+Ctrl+Shift.