feat(docs): Add an example for combining just modifiers (#1826)
Co-authored-by: Cem Aksoylar <caksoylar@users.noreply.github.com>
This commit is contained in:
parent
5d9ae8fffa
commit
a5c57fa224
1 changed files with 2 additions and 0 deletions
|
@ -38,6 +38,8 @@ These functions take the form: `XX(code)`
|
|||
- `&kp LS(A)` = `LEFT_SHIFT`+`A` (a capitalized **A**).
|
||||
- They can be combined:
|
||||
- `&kp LC(RA(B))` = `LEFT_CONTROL`+`RIGHT_ALT`+`B`
|
||||
- They can be applied to a modifier keycode to create combined modifier keys:
|
||||
- `&kp LS(LALT)` = `LEFT_SHIFT` + `LEFT_ALT`
|
||||
- Some basic codes already include a modifier function in their definition:
|
||||
- `DOLLAR` = `LS(NUMBER_4)`
|
||||
- There are left- and right-handed versions of each modifier (also see table above):
|
||||
|
|
Loading…
Add table
Reference in a new issue