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.

31 lines
1.9 KiB

  1. # US ANSI Shifted Symbols
  2. These keycodes correspond to characters that are "shifted" on a standard US ANSI keyboards. They do not have dedicated keycodes but are instead typed by holding down shift and then sending a keycode.
  3. It's important to remember that all of these keycodes send a left shift - this may cause unintended actions if unaccounted for. The short code is preferred in most situations.
  4. ## US ANSI Shifted Keycodes
  5. |Key |Aliases |Description |
  6. |------------------------|------------------|-------------------|
  7. |`KC_TILDE` |`KC_TILD` |`~` |
  8. |`KC_EXCLAIM` |`KC_EXLM` |`!` |
  9. |`KC_AT` | |`@` |
  10. |`KC_HASH` | |`#` |
  11. |`KC_DOLLAR` |`KC_DLR` |`$` |
  12. |`KC_PERCENT` |`KC_PERC` |`%` |
  13. |`KC_CIRCUMFLEX` |`KC_CIRC` |`^` |
  14. |`KC_AMPERSAND` |`KC_AMPR` |`&` |
  15. |`KC_ASTERISK` |`KC_ASTR` |`*` |
  16. |`KC_LEFT_PAREN` |`KC_LPRN` |`(` |
  17. |`KC_RIGHT_PAREN` |`KC_RPRN` |`)` |
  18. |`KC_UNDERSCORE` |`KC_UNDS` |`_` |
  19. |`KC_PLUS` | |`+` |
  20. |`KC_LEFT_CURLY_BRACE` |`KC_LCBR` |`{` |
  21. |`KC_RIGHT_CURLY_BRACE` |`KC_RCBR` |`}` |
  22. |`KC_PIPE` | |<code>&#124;</code>|
  23. |`KC_COLON` |`KC_COLN` |`:` |
  24. |`KC_DOUBLE_QUOTE` |`KC_DQT`/`KC_DQUO`|`"` |
  25. |`KC_LEFT_ANGLE_BRACKET` |`KC_LT`/`KC_LABK` |`<` |
  26. |`KC_RIGHT_ANGLE_BRACKET`|`KC_GT`/`KC_RABK` |`>` |
  27. |`KC_QUESTION` |`KC_QUES` |`?` |