diff options
author | skullY <skullydazed@gmail.com> | 2017-08-06 17:51:42 -0700 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2017-08-16 15:47:20 -0400 |
commit | 9b879b1267cd5cbebf4d73595c7ca4ed52fe5ef4 (patch) | |
tree | e47cc787fcb7745d83d6e645b21c00e498b55100 /docs/keycodes_us_ansi_shifted.md | |
parent | 2709744cdda808121ae91e8467659f715e68a540 (diff) | |
download | qmk_firmware-9b879b1267cd5cbebf4d73595c7ca4ed52fe5ef4.tar.gz qmk_firmware-9b879b1267cd5cbebf4d73595c7ca4ed52fe5ef4.zip |
break up keymaps and quantum keycodes into files by feature
Diffstat (limited to 'docs/keycodes_us_ansi_shifted.md')
-rw-r--r-- | docs/keycodes_us_ansi_shifted.md | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/docs/keycodes_us_ansi_shifted.md b/docs/keycodes_us_ansi_shifted.md new file mode 100644 index 000000000..6c7ef4caa --- /dev/null +++ b/docs/keycodes_us_ansi_shifted.md | |||
@@ -0,0 +1,31 @@ | |||
1 | # US ANSI Shifted symbols | ||
2 | |||
3 | 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. | ||
4 | |||
5 | 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. | ||
6 | |||
7 | ## US ANSI Shifted Keycodes | ||
8 | |||
9 | |Short Name|Long Name|Description| | ||
10 | |----------|---------|-----------| | ||
11 | |`KC_TILD`|`KC_TILDE`|tilde `~`| | ||
12 | |`KC_EXLM`|`KC_EXCLAIM`|exclamation mark `!`| | ||
13 | |`KC_AT`||at sign `@`| | ||
14 | |`KC_HASH`||hash sign `#`| | ||
15 | |`KC_DLR`|`KC_DOLLAR`|dollar sign `$`| | ||
16 | |`KC_PERC`|`KC_PERCENT`|percent sign `%`| | ||
17 | |`KC_CIRC`|`KC_CIRCUMFLEX`|circumflex `^`| | ||
18 | |`KC_AMPR`|`KC_AMPERSAND`|ampersand `&`| | ||
19 | |`KC_ASTR`|`KC_ASTERISK`|asterisk `*`| | ||
20 | |`KC_LPRN`|`KC_LEFT_PAREN`|left parenthesis `(`| | ||
21 | |`KC_RPRN`|`KC_RIGHT_PAREN`|right parenthesis `)`| | ||
22 | |`KC_UNDS`|`KC_UNDERSCORE`|underscore `_`| | ||
23 | |`KC_PLUS`||plus sign `+`| | ||
24 | |`KC_LCBR`|`KC_LEFT_CURLY_BRACE`|left curly brace `{`| | ||
25 | |`KC_RCBR`|`KC_RIGHT_CURLY_BRACE`|right curly brace `}`| | ||
26 | |`KC_LT`/`KC_LABK`|`KC_LEFT_ANGLE_BRACKET`|left angle bracket `<`| | ||
27 | |`KC_GT`/`KC_RABK`|`KC_RIGHT_ANGLE_BRACKET`|right angle bracket `>`| | ||
28 | |`KC_COLN`|`KC_COLON`|colon `:`| | ||
29 | |`KC_PIPE`||pipe `\|`| | ||
30 | |`KC_QUES`|`KC_QUESTION`|question mark `?`| | ||
31 | |`KC_DQT`/`KC_DQUO`|`KC_DOUBLE_QUOTE`|double quote `"`| | ||