Add missing semicolon to examples in doc

This commit is contained in:
Christian Stücklberger 2021-05-19 15:57:17 +02:00
parent 5b86fdd876
commit bf2d726802
5 changed files with 18 additions and 19 deletions

View file

@ -56,7 +56,7 @@ For example, if you press `&mt LEFT_SHIFT A` and then release it without pressin
```
&mt {
retro-tap;
}
};
```
#### Home row mods

View file

@ -22,21 +22,20 @@ An example of how to implement the mod-morph "Grave Escape":
```
/ {
behaviors {
gresc: grave_escape {
compatible = "zmk,behavior-mod-morph";
label = "GRAVE_ESCAPE";
#binding-cells = <0>;
bindings = <&kp ESC>, <&kp GRAVE>;
mods = <(MOD_LGUI|MOD_LSFT|MOD_RGUI|MOD_RSFT)>;
}
};
behaviors {
gresc: grave_escape {
compatible = "zmk,behavior-mod-morph";
label = "GRAVE_ESCAPE";
#binding-cells = <0>;
bindings = <&kp ESC>, <&kp GRAVE>;
mods = <(MOD_LGUI|MOD_LSFT|MOD_RGUI|MOD_RSFT)>;
};
};
keymap {
...
}
}
};
};
```
Note that this specific mod-morph exists in ZMK by default using code `&gresc`.

View file

@ -40,8 +40,8 @@ You can configure a different tapping term in your keymap:
/ {
keymap {
...
}
}
};
};
```
### Additional information

View file

@ -38,8 +38,8 @@ You can configure a different `release-after-ms` in your keymap:
/ {
keymap {
...
}
}
};
};
```
### Advanced usage

View file

@ -32,8 +32,8 @@ You can configure a different `release-after-ms` in your keymap:
/ {
keymap {
...
}
}
};
};
```
### Advanced usage