You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
2.4 KiB

  1. # Modifier Keys :id=modifier-keys
  2. These allow you to combine a modifier with a keycode. When pressed, the keydown event for the modifier, then `kc` will be sent. On release, the keyup event for `kc`, then the modifier will be sent.
  3. |Key |Aliases |Description |
  4. |----------|-------------------------------|----------------------------------------------------|
  5. |`LCTL(kc)`|`C(kc)` |Hold Left Control and press `kc` |
  6. |`LSFT(kc)`|`S(kc)` |Hold Left Shift and press `kc` |
  7. |`LALT(kc)`|`A(kc)`, `LOPT(kc)` |Hold Left Alt and press `kc` |
  8. |`LGUI(kc)`|`G(kc)`, `LCMD(kc)`, `LWIN(kc)`|Hold Left GUI and press `kc` |
  9. |`RCTL(kc)`| |Hold Right Control and press `kc` |
  10. |`RSFT(kc)`| |Hold Right Shift and press `kc` |
  11. |`RALT(kc)`|`ROPT(kc)`, `ALGR(kc)` |Hold Right Alt and press `kc` |
  12. |`RGUI(kc)`|`RCMD(kc)`, `LWIN(kc)` |Hold Right GUI and press `kc` |
  13. |`SGUI(kc)`|`SCMD(kc)`, `SWIN(kc)` |Hold Left Shift and GUI and press `kc` |
  14. |`LCA(kc)` | |Hold Left Control and Alt and press `kc` |
  15. |`LCAG(kc)`| |Hold Left Control, Alt and GUI and press `kc` |
  16. |`MEH(kc)` | |Hold Left Control, Shift and Alt and press `kc` |
  17. |`HYPR(kc)`| |Hold Left Control, Shift, Alt and GUI and press `kc`|
  18. You can also chain them, for example `LCTL(LALT(KC_DEL))` or `C(A(KC_DEL))` makes a key that sends Control+Alt+Delete with a single keypress.
  19. # Legacy Content :id=legacy-content
  20. This page used to encompass a large set of features. We have moved many sections that used to be part of this page to their own pages. Everything below this point is simply a redirect so that people following old links on the web find what they're looking for.
  21. ## Layers :id=switching-and-toggling-layers
  22. * [Layers](feature_layers.md)
  23. ## Mod-Tap :id=mod-tap
  24. * [Mod-Tap](mod_tap.md)
  25. ## One Shot Keys :id=one-shot-keys
  26. * [One Shot Keys](one_shot_keys.md)
  27. ## Tap-Hold Configuration Options :id=tap-hold-configuration-options
  28. * [Tap-Hold Configuration Options](tap_hold.md)