X-Git-Url: https://git.friedersdorff.com/?a=blobdiff_plain;f=doc%2Fkeymap.md;h=9d986a8c51d80e0a1588ca03a911ccb32786a294;hb=09e6f71bffc8627932cf5ff42b726ac4d9bf89cf;hp=7ef7430c961dd7f97f9a0f7f9fe6d3d78e840ba6;hpb=e0a95d4075b972ef5d623aa125e009c28e0edaf8;p=max%2Ftmk_keyboard.git diff --git a/doc/keymap.md b/doc/keymap.md index 7ef7430c..9d986a8c 100644 --- a/doc/keymap.md +++ b/doc/keymap.md @@ -269,7 +269,7 @@ Default Layer is a layer which always is valid and referred to when actions is n This sets Default Layer to given parameter `layer` and activate it. - ACTION_DEFAULT_LAYER(layer) + ACTION_DEFAULT_LAYER_SET(layer) #### 2.2.2 Momentary @@ -444,6 +444,10 @@ Step through backlight levels. ACTION_BACKLIGHT_STEP() +Turn a specific backlight level on or off. + + ACTION_BACKLIGHT_LEVEL(1) + #### 2.5.2 Turn on / off backlight Turn the backlight on and off without changing level. @@ -493,6 +497,13 @@ Number of taps can be configured with `TAPPING_TOGGLE` in `config.h`, `5` by def +### 3.5 Momentary switching with Modifiers +This registers modifier key(s) simultaneously with layer switching. + + ACTION_LAYER_MODS(2, MOD_LSFT | MOD_LALT) + + + ## 4. Tapping Tapping is to press and release a key quickly. Tapping speed is determined with setting of `TAPPING_TERM`, which can be defined in `config.h`, 200ms by default.