]> git.donarmstrong.com Git - qmk_firmware.git/blob - docs/keycodes.md
RAMA U80-A, wilba.tech WT60-A, WT65-A, WT80-A, IS31FL3736 driver (#3925)
[qmk_firmware.git] / docs / keycodes.md
1 # Keycodes Overview
2
3 When defining a [keymap](keymap.md) each key needs a valid key definition. This page documents the symbols that correspond to keycodes that are available to you in QMK.
4
5 This is a reference only. Each group of keys links to the page documenting their functionality in more detail.
6
7 ## [Basic Keycodes](keycodes_basic.md)
8
9 |Key                    |Aliases             |Description                                    |
10 |-----------------------|--------------------|-----------------------------------------------|
11 |`KC_NO`                |`XXXXXXX`           |Ignore this key (NOOP)                         |
12 |`KC_TRANSPARENT`       |`KC_TRNS`, `_______`|Use the next lowest non-transparent key        |
13 |`KC_A`                 |                    |`a` and `A`                                    |
14 |`KC_B`                 |                    |`b` and `B`                                    |
15 |`KC_C`                 |                    |`c` and `C`                                    |
16 |`KC_D`                 |                    |`d` and `D`                                    |
17 |`KC_E`                 |                    |`e` and `E`                                    |
18 |`KC_F`                 |                    |`f` and `F`                                    |
19 |`KC_G`                 |                    |`g` and `G`                                    |
20 |`KC_H`                 |                    |`h` and `H`                                    |
21 |`KC_I`                 |                    |`i` and `I`                                    |
22 |`KC_J`                 |                    |`j` and `J`                                    |
23 |`KC_K`                 |                    |`k` and `K`                                    |
24 |`KC_L`                 |                    |`l` and `L`                                    |
25 |`KC_M`                 |                    |`m` and `M`                                    |
26 |`KC_N`                 |                    |`n` and `N`                                    |
27 |`KC_O`                 |                    |`o` and `O`                                    |
28 |`KC_P`                 |                    |`p` and `P`                                    |
29 |`KC_Q`                 |                    |`q` and `Q`                                    |
30 |`KC_R`                 |                    |`r` and `R`                                    |
31 |`KC_S`                 |                    |`s` and `S`                                    |
32 |`KC_T`                 |                    |`t` and `T`                                    |
33 |`KC_U`                 |                    |`u` and `U`                                    |
34 |`KC_V`                 |                    |`v` and `V`                                    |
35 |`KC_W`                 |                    |`w` and `W`                                    |
36 |`KC_X`                 |                    |`x` and `X`                                    |
37 |`KC_Y`                 |                    |`y` and `Y`                                    |
38 |`KC_Z`                 |                    |`z` and `Z`                                    |
39 |`KC_1`                 |                    |`1` and `!`                                    |
40 |`KC_2`                 |                    |`2` and `@`                                    |
41 |`KC_3`                 |                    |`3` and `#`                                    |
42 |`KC_4`                 |                    |`4` and `$`                                    |
43 |`KC_5`                 |                    |`5` and `%`                                    |
44 |`KC_6`                 |                    |`6` and `^`                                    |
45 |`KC_7`                 |                    |`7` and `&`                                    |
46 |`KC_8`                 |                    |`8` and `*`                                    |
47 |`KC_9`                 |                    |`9` and `(`                                    |
48 |`KC_0`                 |                    |`0` and `)`                                    |
49 |`KC_ENTER`             |`KC_ENT`            |Return (Enter)                                 |
50 |`KC_ESCAPE`            |`KC_ESC`            |Escape                                         |
51 |`KC_BSPACE`            |`KC_BSPC`           |Delete (Backspace)                             |
52 |`KC_TAB`               |                    |Tab                                            |
53 |`KC_SPACE`             |`KC_SPC`            |Spacebar                                       |
54 |`KC_MINUS`             |`KC_MINS`           |`-` and `_`                                    |
55 |`KC_EQUAL`             |`KC_EQL`            |`=` and `+`                                    |
56 |`KC_LBRACKET`          |`KC_LBRC`           |`[` and `{`                                    |
57 |`KC_RBRACKET`          |`KC_RBRC`           |`]` and `}`                                    |
58 |`KC_BSLASH`            |`KC_BSLS`           |`\` and <code>&#124;</code>                    |
59 |`KC_NONUS_HASH`        |`KC_NUHS`           |Non-US `#` and `~`                             |
60 |`KC_SCOLON`            |`KC_SCLN`           |`;` and `:`                                    |
61 |`KC_QUOTE`             |`KC_QUOT`           |`'` and `"`                                    |
62 |`KC_GRAVE`             |`KC_GRV`, `KC_ZKHK` |<code>&#96;</code> and `~`, JIS Zenkaku/Hankaku|
63 |`KC_COMMA`             |`KC_COMM`           |`,` and `<`                                    |
64 |`KC_DOT`               |                    |`.` and `>`                                    |
65 |`KC_SLASH`             |`KC_SLSH`           |`/` and `?`                                    |
66 |`KC_CAPSLOCK`          |`KC_CLCK`, `KC_CAPS`|Caps Lock                                      |
67 |`KC_F1`                |                    |F1                                             |
68 |`KC_F2`                |                    |F2                                             |
69 |`KC_F3`                |                    |F3                                             |
70 |`KC_F4`                |                    |F4                                             |
71 |`KC_F5`                |                    |F5                                             |
72 |`KC_F6`                |                    |F6                                             |
73 |`KC_F7`                |                    |F7                                             |
74 |`KC_F8`                |                    |F8                                             |
75 |`KC_F9`                |                    |F9                                             |
76 |`KC_F10`               |                    |F10                                            |
77 |`KC_F11`               |                    |F11                                            |
78 |`KC_F12`               |                    |F12                                            |
79 |`KC_PSCREEN`           |`KC_PSCR`           |Print Screen                                   |
80 |`KC_SCROLLLOCK`        |`KC_SLCK`           |Scroll Lock                                    |
81 |`KC_PAUSE`             |`KC_PAUS`, `KC_BRK` |Pause                                          |
82 |`KC_INSERT`            |`KC_INS`            |Insert                                         |
83 |`KC_HOME`              |                    |Home                                           |
84 |`KC_PGUP`              |                    |Page Up                                        |
85 |`KC_DELETE`            |`KC_DEL`            |Forward Delete                                 |
86 |`KC_END`               |                    |End                                            |
87 |`KC_PGDOWN`            |`KC_PGDN`           |Page Down                                      |
88 |`KC_RIGHT`             |`KC_RGHT`           |Right Arrow                                    |
89 |`KC_LEFT`              |                    |Left Arrow                                     |
90 |`KC_DOWN`              |                    |Down Arrow                                     |
91 |`KC_UP`                |                    |Up Arrow                                       |
92 |`KC_NUMLOCK`           |`KC_NLCK`           |Keypad Num Lock and Clear                      |
93 |`KC_KP_SLASH`          |`KC_PSLS`           |Keypad `/`                                     |
94 |`KC_KP_ASTERISK`       |`KC_PAST`           |Keypad `*`                                     |
95 |`KC_KP_MINUS`          |`KC_PMNS`           |Keypad `-`                                     |
96 |`KC_KP_PLUS`           |`KC_PPLS`           |Keypad `+`                                     |
97 |`KC_KP_ENTER`          |`KC_PENT`           |Keypad Enter                                   |
98 |`KC_KP_1`              |`KC_P1`             |Keypad `1` and End                             |
99 |`KC_KP_2`              |`KC_P2`             |Keypad `2` and Down Arrow                      |
100 |`KC_KP_3`              |`KC_P3`             |Keypad `3` and Page Down                       |
101 |`KC_KP_4`              |`KC_P4`             |Keypad `4` and Left Arrow                      |
102 |`KC_KP_5`              |`KC_P5`             |Keypad `5`                                     |
103 |`KC_KP_6`              |`KC_P6`             |Keypad `6` and Right Arrow                     |
104 |`KC_KP_7`              |`KC_P7`             |Keypad `7` and Home                            |
105 |`KC_KP_8`              |`KC_P8`             |Keypad `8` and Up Arrow                        |
106 |`KC_KP_9`              |`KC_P9`             |Keypad `9` and Page Up                         |
107 |`KC_KP_0`              |`KC_P0`             |Keypad `0` and Insert                          |
108 |`KC_KP_DOT`            |`KC_PDOT`           |Keypad `.` and Delete                          |
109 |`KC_NONUS_BSLASH`      |`KC_NUBS`           |Non-US `\` and <code>&#124;</code>             |
110 |`KC_APPLICATION`       |`KC_APP`            |Application (Windows Menu Key)                 |
111 |`KC_POWER`             |                    |System Power (macOS)                           |
112 |`KC_KP_EQUAL`          |`KC_PEQL`           |Keypad `=`                                     |
113 |`KC_F13`               |                    |F13                                            |
114 |`KC_F14`               |                    |F14                                            |
115 |`KC_F15`               |                    |F15                                            |
116 |`KC_F16`               |                    |F16                                            |
117 |`KC_F17`               |                    |F17                                            |
118 |`KC_F18`               |                    |F18                                            |
119 |`KC_F19`               |                    |F19                                            |
120 |`KC_F20`               |                    |F20                                            |
121 |`KC_F21`               |                    |F21                                            |
122 |`KC_F22`               |                    |F22                                            |
123 |`KC_F23`               |                    |F23                                            |
124 |`KC_F24`               |                    |F24                                            |
125 |`KC_EXECUTE`           |`KC_EXEC`           |Execute                                        |
126 |`KC_HELP`              |                    |Help                                           |
127 |`KC_MENU`              |                    |Menu                                           |
128 |`KC_SELECT`            |`KC_SLCT`           |Select                                         |
129 |`KC_STOP`              |                    |Stop                                           |
130 |`KC_AGAIN`             |`KC_AGIN`           |Again                                          |
131 |`KC_UNDO`              |                    |Undo                                           |
132 |`KC_CUT`               |                    |Cut                                            |
133 |`KC_COPY`              |                    |Copy                                           |
134 |`KC_PASTE`             |`KC_PSTE`           |Paste                                          |
135 |`KC_FIND`              |                    |Find                                           |
136 |`KC__MUTE`             |                    |Mute (macOS)                                   |
137 |`KC__VOLUP`            |                    |Volume Up (macOS)                              |
138 |`KC__VOLDOWN`          |                    |Volume Down (macOS)                            |
139 |`KC_LOCKING_CAPS`      |`KC_LCAP`           |Locking Caps Lock                              |
140 |`KC_LOCKING_NUM`       |`KC_LNUM`           |Locking Num Lock                               |
141 |`KC_LOCKING_SCROLL`    |`KC_LSCR`           |Locking Scroll Lock                            |
142 |`KC_KP_COMMA`          |`KC_PCMM`           |Keypad `,`                                     |
143 |`KC_KP_EQUAL_AS400`    |                    |Keypad `=` on AS/400 keyboards                 |
144 |`KC_INT1`              |`KC_RO`             |JIS `\` and <code>&#124;</code>                |
145 |`KC_INT2`              |`KC_KANA`           |JIS Katakana/Hiragana                          |
146 |`KC_INT3`              |`KC_JYEN`           |JIS `Â¥`                                        |
147 |`KC_INT4`              |`KC_HENK`           |JIS Henkan                                     |
148 |`KC_INT5`              |`KC_MHEN`           |JIS Muhenkan                                   |
149 |`KC_INT6`              |                    |JIS Numpad `,`                                 |
150 |`KC_INT7`              |                    |International 7                                |
151 |`KC_INT8`              |                    |International 8                                |
152 |`KC_INT9`              |                    |International 9                                |
153 |`KC_LANG1`             |`KC_HAEN`           |Hangul/English                                 |
154 |`KC_LANG2`             |`KC_HANJ`           |Hanja                                          |
155 |`KC_LANG3`             |                    |JIS Katakana                                   |
156 |`KC_LANG4`             |                    |JIS Hiragana                                   |
157 |`KC_LANG5`             |                    |JIS Zenkaku/Hankaku                            |
158 |`KC_LANG6`             |                    |Language 6                                     |
159 |`KC_LANG7`             |                    |Language 7                                     |
160 |`KC_LANG8`             |                    |Language 8                                     |
161 |`KC_LANG9`             |                    |Language 9                                     |
162 |`KC_ALT_ERASE`         |`KC_ERAS`           |Alternate Erase                                |
163 |`KC_SYSREQ`            |                    |SysReq/Attention                               |
164 |`KC_CANCEL`            |                    |Cancel                                         |
165 |`KC_CLEAR`             |`KC_CLR`            |Clear                                          |
166 |`KC_PRIOR`             |                    |Prior                                          |
167 |`KC_RETURN`            |                    |Return                                         |
168 |`KC_SEPARATOR`         |                    |Separator                                      |
169 |`KC_OUT`               |                    |Out                                            |
170 |`KC_OPER`              |                    |Oper                                           |
171 |`KC_CLEAR_AGAIN`       |                    |Clear/Again                                    |
172 |`KC_CRSEL`             |                    |CrSel/Props                                    |
173 |`KC_EXSEL`             |                    |ExSel                                          |
174 |`KC_LCTRL`             |`KC_LCTL`           |Left Control                                   |
175 |`KC_LSHIFT`            |`KC_LSFT`           |Left Shift                                     |
176 |`KC_LALT`              |                    |Left Alt                                       |
177 |`KC_LGUI`              |`KC_LCMD`, `KC_LWIN`|Left GUI (Windows/Command/Meta key)            |
178 |`KC_RCTRL`             |`KC_RCTL`           |Right Control                                  |
179 |`KC_RSHIFT`            |`KC_RSFT`           |Right Shift                                    |
180 |`KC_RALT`              |                    |Right Alt                                      |
181 |`KC_RGUI`              |`KC_RCMD`, `KC_RWIN`|Right GUI (Windows/Command/Meta key)           |
182 |`KC_SYSTEM_POWER`      |`KC_PWR`            |System Power Down                              |
183 |`KC_SYSTEM_SLEEP`      |`KC_SLEP`           |System Sleep                                   |
184 |`KC_SYSTEM_WAKE`       |`KC_WAKE`           |System Wake                                    |
185 |`KC_AUDIO_MUTE`        |`KC_MUTE`           |Mute                                           |
186 |`KC_AUDIO_VOL_UP`      |`KC_VOLU`           |Volume Up                                      |
187 |`KC_AUDIO_VOL_DOWN`    |`KC_VOLD`           |Volume Down                                    |
188 |`KC_MEDIA_NEXT_TRACK`  |`KC_MNXT`           |Next Track (Windows)                           |
189 |`KC_MEDIA_PREV_TRACK`  |`KC_MPRV`           |Previous Track (Windows)                       |
190 |`KC_MEDIA_STOP`        |`KC_MSTP`           |Stop Track (Windows)                           |
191 |`KC_MEDIA_PLAY_PAUSE`  |`KC_MPLY`           |Play/Pause Track                               |
192 |`KC_MEDIA_SELECT`      |`KC_MSEL`           |Launch Media Player (Windows)                  |
193 |`KC_MEDIA_EJECT`       |`KC_EJCT`           |Eject (macOS)                                  |
194 |`KC_MAIL`              |                    |Launch Mail (Windows)                          |
195 |`KC_CALCULATOR`        |`KC_CALC`           |Launch Calculator (Windows)                    |
196 |`KC_MY_COMPUTER`       |`KC_MYCM`           |Launch My Computer (Windows)                   |
197 |`KC_WWW_SEARCH`        |`KC_WSCH`           |Browser Search (Windows)                       |
198 |`KC_WWW_HOME`          |`KC_WHOM`           |Browser Home (Windows)                         |
199 |`KC_WWW_BACK`          |`KC_WBAK`           |Browser Back (Windows)                         |
200 |`KC_WWW_FORWARD`       |`KC_WFWD`           |Browser Forward (Windows)                      |
201 |`KC_WWW_STOP`          |`KC_WSTP`           |Browser Stop (Windows)                         |
202 |`KC_WWW_REFRESH`       |`KC_WREF`           |Browser Refresh (Windows)                      |
203 |`KC_WWW_FAVORITES`     |`KC_WFAV`           |Browser Favorites (Windows)                    |
204 |`KC_MEDIA_FAST_FORWARD`|`KC_MFFD`           |Next Track (macOS)                             |
205 |`KC_MEDIA_REWIND`      |`KC_MRWD`           |Previous Track (macOS)                         |
206
207 ## [Quantum Keycodes](quantum_keycodes.md#qmk-keycodes)
208
209 |Key          |Aliases    |Description                                                          |
210 |-------------|-----------|---------------------------------------------------------------------|
211 |`RESET`      |           |Put the keyboard into DFU mode for flashing                          |
212 |`DEBUG`      |           |Toggle debug mode                                                    |
213 |`KC_GESC`    |`GRAVE_ESC`|Escape when tapped, <code>&#96;</code> when pressed with Shift or GUI|
214 |`KC_LSPO`    |           |Left Shift when held, `(` when tapped                                |
215 |`KC_RSPC`    |           |Right Shift when held, `)` when tapped                               |
216 |`KC_LEAD`    |           |The [Leader key](feature_leader_key.md)                              |
217 |`KC_LOCK`    |           |The [Lock key](feature_key_lock.md)                                  |
218 |`FUNC(n)`    |`F(n)`     |Call `fn_action(n)` (deprecated)                                     |
219 |`M(n)`       |           |Call macro `n`                                                       |
220 |`MACROTAP(n)`|           |Macro-tap `n` idk FIXME                                              |
221
222 ## [Audio Keys](feature_audio.md)
223
224 |Key             |Aliases  |Description                       |
225 |----------------|---------|----------------------------------|
226 |`AU_ON`         |         |Audio mode on                     |
227 |`AU_OFF`        |         |Audio mode off                    |
228 |`AU_TOG`        |         |Toggles Audio mode                |
229 |`CLICKY_TOGGLE` |`CK_TOGG`|Toggles Audio clicky mode         |
230 |`CLICKY_UP`     |`CK_UP`  |Increases frequency of the clicks |
231 |`CLICKY_DOWN`   |`CK_DOWN`|Decreases frequency of the clicks |
232 |`CLICKY_RESET`  |`CK_RST` |Resets frequency to default       |
233 |`MU_ON`         |         |Turns on Music Mode               |
234 |`MU_OFF`        |         |Turns off Music Mode              |
235 |`MU_TOG`        |         |Toggles Music Mode                |
236 |`MU_MOD`        |         |Cycles through the music modes    |
237
238
239
240 ## [Backlighting](feature_backlight.md)
241
242 |Key      |Description                               |
243 |---------|------------------------------------------|
244 |`BL_TOGG`|Turn the backlight on or off              |
245 |`BL_STEP`|Cycle through backlight levels            |
246 |`BL_ON`  |Set the backlight to max brightness       |
247 |`BL_OFF` |Turn the backlight off                    |
248 |`BL_INC` |Increase the backlight level              |
249 |`BL_DEC` |Decrease the backlight level              |
250 |`BL_BRTG`|Toggle backlight breathing                |
251
252 ## [Bootmagic](feature_bootmagic.md)
253
254 |Key                               |Aliases  |Description                         |
255 |----------------------------------|---------|------------------------------------|
256 |`MAGIC_SWAP_CONTROL_CAPSLOCK`     |         |Swap Caps Lock and Left Control     |
257 |`MAGIC_CAPSLOCK_TO_CONTROL`       |         |Treat Caps Lock as Control          |
258 |`MAGIC_SWAP_LALT_LGUI`            |         |Swap Left Alt and GUI               |
259 |`MAGIC_SWAP_RALT_RGUI`            |         |Swap Right Alt and GUI              |
260 |`MAGIC_NO_GUI`                    |         |Disable the GUI key                 |
261 |`MAGIC_SWAP_GRAVE_ESC`            |         |Swap <code>&#96;</code> and Escape  |
262 |`MAGIC_SWAP_BACKSLASH_BACKSPACE`  |         |Swap `\` and Backspace              |
263 |`MAGIC_HOST_NKRO`                 |         |Force NKRO on                       |
264 |`MAGIC_SWAP_ALT_GUI`              |`AG_SWAP`|Swap Alt and GUI on both sides      |
265 |`MAGIC_UNSWAP_CONTROL_CAPSLOCK`   |         |Unswap Caps Lock and Left Control   |
266 |`MAGIC_UNCAPSLOCK_TO_CONTROL`     |         |Stop treating Caps Lock as Control  |
267 |`MAGIC_UNSWAP_LALT_LGUI`          |         |Unswap Left Alt and GUI             |
268 |`MAGIC_UNSWAP_RALT_RGUI`          |         |Unswap Right Alt and GUI            |
269 |`MAGIC_UNNO_GUI`                  |         |Enable the GUI key                  |
270 |`MAGIC_UNSWAP_GRAVE_ESC`          |         |Unswap <code>&#96;</code> and Escape|
271 |`MAGIC_UNSWAP_BACKSLASH_BACKSPACE`|         |Unswap `\` and Backspace            |
272 |`MAGIC_UNHOST_NKRO`               |         |Force NKRO off                      |
273 |`MAGIC_UNSWAP_ALT_GUI`            |`AG_NORM`|Unswap Alt and GUI on both sides    |
274 |`MAGIC_TOGGLE_ALT_GUI`            |`AG_TOGG`|Toggle Alt and GUI swap on both sides|
275 |`MAGIC_TOGGLE_NKRO`               |         |Turn NKRO on or off                 |
276
277 ## [Bluetooth](feature_bluetooth.md)
278
279 |Key       |Description                                   |
280 |----------|----------------------------------------------|
281 |`OUT_AUTO`|Automatically switch between USB and Bluetooth|
282 |`OUT_USB` |USB only                                      |
283 |`OUT_BT`  |Bluetooth only                                |
284
285
286 ## [Layer Switching](feature_advanced_keycodes.md#switching-and-toggling-layers)
287
288 |Key         |Description                                                               |
289 |-----------------|---------------------------------------------------------------------|
290 |`DF(layer)`      |Switches the default layer                                           |
291 |`MO(layer)`      |Momentarily activates layer, switches off when you let go            |
292 |`LM(layer, mod)` |As `MO(layer)` but with `mod` active                                 |
293 |`LT(layer, kc)`  |Momentarily activates layer if held, sends kc if tapped              |
294 |`TG(layer)`      |Toggles the layer (enables it if no active, and vise versa)          |
295 |`TO(layer)`      |Activates layer and deactivates all other layers                     |
296 |`TT(layer)`      |Momentarily activates layer if held, toggles it if tapped repeatedly |
297
298 ## [Mouse Keys](feature_mouse_keys.md)
299
300 |Key             |Aliases  |Description                |
301 |----------------|---------|---------------------------|
302 |`KC_MS_UP`      |`KC_MS_U`|Mouse Cursor Up            |
303 |`KC_MS_DOWN`    |`KC_MS_D`|Mouse Cursor Down          |
304 |`KC_MS_LEFT`    |`KC_MS_L`|Mouse Cursor Left          |
305 |`KC_MS_RIGHT`   |`KC_MS_R`|Mouse Cursor Right         |
306 |`KC_MS_BTN1`    |`KC_BTN1`|Mouse Button 1             |
307 |`KC_MS_BTN2`    |`KC_BTN2`|Mouse Button 2             |
308 |`KC_MS_BTN3`    |`KC_BTN3`|Mouse Button 3             |
309 |`KC_MS_BTN4`    |`KC_BTN4`|Mouse Button 4             |
310 |`KC_MS_BTN5`    |`KC_BTN5`|Mouse Button 5             |
311 |`KC_MS_WH_UP`   |`KC_WH_U`|Mouse Wheel Up             |
312 |`KC_MS_WH_DOWN` |`KC_WH_D`|Mouse Wheel Down           |
313 |`KC_MS_WH_LEFT` |`KC_WH_L`|Mouse Wheel Left           |
314 |`KC_MS_WH_RIGHT`|`KC_WH_R`|Mouse Wheel Right          |
315 |`KC_MS_ACCEL0`  |`KC_ACL0`|Set mouse acceleration to 0|
316 |`KC_MS_ACCEL1`  |`KC_ACL1`|Set mouse acceleration to 1|
317 |`KC_MS_ACCEL2`  |`KC_ACL2`|Set mouse acceleration to 2|
318
319 ## [Modifiers](feature_advanced_keycodes.md#modifier-keys)
320
321 |Key       |Aliases               |Description                                         |
322 |----------|----------------------|----------------------------------------------------|
323 |`KC_HYPR` |                      |Hold Left Control, Shift, Alt and GUI               |
324 |`KC_MEH`  |                      |Hold Left Control, Shift and Alt                    |
325 |`LCTL(kc)`|                      |Hold Left Control and press `kc`                    |
326 |`LSFT(kc)`|`S(kc)`               |Hold Left Shift and press `kc`                      |
327 |`LALT(kc)`|                      |Hold Left Alt and press `kc`                        |
328 |`LGUI(kc)`|`LCMD(kc)`, `LWIN(kc)`|Hold Left GUI and press `kc`                        |
329 |`RCTL(kc)`|                      |Hold Right Control and press `kc`                   |
330 |`RSFT(kc)`|                      |Hold Right Shift and press `kc`                     |
331 |`RALT(kc)`|                      |Hold Right Alt and press `kc`                       |
332 |`RGUI(kc)`|`RCMD(kc)`, `LWIN(kc)`|Hold Right GUI and press `kc`                       |
333 |`HYPR(kc)`|                      |Hold Left Control, Shift, Alt and GUI and press `kc`|
334 |`MEH(kc)` |                      |Hold Left Control, Shift and Alt and press `kc`     |
335 |`LCAG(kc)`|                      |Hold Left Control, Alt and GUI and press `kc`       |
336 |`ALTG(kc)`|                      |Hold Right Control and Alt and press `kc`           |
337 |`SGUI(kc)`|`SCMD(kc)`, `SWIN(kc)`|Hold Left Shift and GUI and press `kc`              |
338 |`LCA(kc)` |                      |Hold Left Control and Alt and press `kc`            |
339
340 ## [Mod-Tap Keys](feature_advanced_keycodes.md#mod-tap)
341
342 |Key         |Aliases                                |Description                                            |
343 |------------|---------------------------------------|-------------------------------------------------------|
344 |`LCTL_T(kc)`|`CTL_T(kc)`                            |Left Control when held, `kc` when tapped               |
345 |`RCTL_T(kc)`|                                       |Right Control when held, `kc` when tapped              |
346 |`LSFT_T(kc)`|`SFT_T(kc)`                            |Left Shift when held, `kc` when tapped                 |
347 |`RSFT_T(kc)`|                                       |Right Shift when held, `kc` when tapped                |
348 |`LALT_T(kc)`|`ALT_T(kc)`                            |Left Alt when held, `kc` when tapped                   |
349 |`RALT_T(kc)`|`ALGR_T(kc)`                           |Right Alt when held, `kc` when tapped                  |
350 |`LGUI_T(kc)`|`LCMD_T(kc)`, `RWIN_T(kc)`, `GUI_T(kc)`|Left GUI when held, `kc` when tapped                   |
351 |`RGUI_T(kc)`|`RCMD_T(kc)`, `RWIN_T(kc)`             |Right GUI when held, `kc` when tapped                  |
352 |`C_S_T(kc)` |                                       |Left Control and Shift when held, `kc` when tapped     |
353 |`MEH_T(kc)` |                                       |Left Control, Shift and Alt when held, `kc` when tapped|
354 |`LCAG_T(kc)`|                                       |Left Control, Alt and GUI when held, `kc` when tapped  |
355 |`RCAG_T(kc)`|                                       |Right Control, Alt and GUI when held, `kc` when tapped |
356 |`ALL_T(kc)` |                                       |Left Control, Shift, Alt and GUI when held, `kc` when tapped - more info [here](http://brettterpstra.com/2012/12/08/a-useful-caps-lock-key/)|
357 |`SGUI_T(kc)`|`SCMD_T(kc)`, `SWIN_T(kc)`             |Left Shift and GUI when held, `kc` when tapped         |
358 |`LCA_T(kc)` |                                       |Left Control and Alt when held, `kc` when tapped       |
359
360 ## [RGB Lighting](feature_rgblight.md)
361
362 |Key                |Aliases   |Description                                                         |
363 |-------------------|----------|--------------------------------------------------------------------|
364 |`RGB_TOG`          |          |Toggle RGB lighting on or off                                       |
365 |`RGB_MODE_FORWARD` |`RGB_MOD` |Cycle through modes, reverse direction when Shift is held           |
366 |`RGB_MODE_REVERSE` |`RGB_RMOD`|Cycle through modes in reverse, forward direction when Shift is held|
367 |`RGB_HUI`          |          |Increase hue                                                        |
368 |`RGB_HUD`          |          |Decrease hue                                                        |
369 |`RGB_SAI`          |          |Increase saturation                                                 |
370 |`RGB_SAD`          |          |Decrease saturation                                                 |
371 |`RGB_VAI`          |          |Increase value (brightness)                                         |
372 |`RGB_VAD`          |          |Decrease value (brightness)                                         |
373 |`RGB_MODE_PLAIN`   |`RGB_M_P `|Static (no animation) mode                                          |
374 |`RGB_MODE_BREATHE` |`RGB_M_B` |Breathing animation mode                                            |
375 |`RGB_MODE_RAINBOW` |`RGB_M_R` |Rainbow animation mode                                              |
376 |`RGB_MODE_SWIRL`   |`RGB_M_SW`|Swirl animation mode                                                |
377 |`RGB_MODE_SNAKE`   |`RGB_M_SN`|Snake animation mode                                                |
378 |`RGB_MODE_KNIGHT`  |`RGB_M_K` |"Knight Rider" animation mode                                       |
379 |`RGB_MODE_XMAS`    |`RGB_M_X` |Christmas animation mode                                            |
380 |`RGB_MODE_GRADIENT`|`RGB_M_G` |Static gradient animation mode                                      |
381 |`RGB_MODE_RGBTEST` |`RGB_M_T` |Red,Green,Blue test animation mode                                  |
382
383 ## [RGB Matrix Lighting](feature_rgb_matrix.md)
384
385 |Key                |Aliases   |Description                                                         |
386 |-------------------|----------|--------------------------------------------------------------------|
387 |`RGB_TOG`          |          |Toggle RGB lighting on or off                                       |
388 |`RGB_MODE_FORWARD` |`RGB_MOD` |Cycle through modes, reverse direction when Shift is held           |
389 |`RGB_MODE_REVERSE` |`RGB_RMOD`|Cycle through modes in reverse, forward direction when Shift is held|
390 |`RGB_HUI`          |          |Increase hue                                                        |
391 |`RGB_HUD`          |          |Decrease hue                                                        |
392 |`RGB_SAI`          |          |Increase saturation                                                 |
393 |`RGB_SAD`          |          |Decrease saturation                                                 |
394 |`RGB_VAI`          |          |Increase value (brightness)                                         |
395 |`RGB_VAD`          |          |Decrease value (brightness)                                         |
396 |`RGB_SPI`          |          |Increase effect speed (does no support eeprom yet)                  |
397 |`RGB_SPD`          |          |Decrease effect speed (does no support eeprom yet)                  |
398
399 ## [Thermal Printer](feature_thermal_printer.md)
400
401 |Key        |Description                             |
402 |-----------|----------------------------------------|
403 |`PRINT_ON` |Start printing everything the user types|
404 |`PRINT_OFF`|Stop printing everything the user types |
405
406 ## [US ANSI Shifted Symbols](keycodes_us_ansi_shifted.md)
407
408 |Key                     |Aliases            |Description        |
409 |------------------------|-------------------|-------------------|
410 |`KC_TILDE`              |`KC_TILD`          |`~`                |
411 |`KC_EXCLAIM`            |`KC_EXLM`          |`!`                |
412 |`KC_AT`                 |                   |`@`                |
413 |`KC_HASH`               |                   |`#`                |
414 |`KC_DOLLAR`             |`KC_DLR`           |`$`                |
415 |`KC_PERCENT`            |`KC_PERC`          |`%`                |
416 |`KC_CIRCUMFLEX`         |`KC_CIRC`          |`^`                |
417 |`KC_AMPERSAND`          |`KC_AMPR`          |`&`                |
418 |`KC_ASTERISK`           |`KC_ASTR`          |`*`                |
419 |`KC_LEFT_PAREN`         |`KC_LPRN`          |`(`                |
420 |`KC_RIGHT_PAREN`        |`KC_RPRN`          |`)`                |
421 |`KC_UNDERSCORE`         |`KC_UNDS`          |`_`                |
422 |`KC_PLUS`               |                   |`+`                |
423 |`KC_LEFT_CURLY_BRACE`   |`KC_LCBR`          |`{`                |
424 |`KC_RIGHT_CURLY_BRACE`  |`KC_RCBR`          |`}`                |
425 |`KC_PIPE`               |                   |<code>&#124;</code>|
426 |`KC_COLON`              |`KC_COLN`          |`:`                |
427 |`KC_DOUBLE_QUOTE`       |`KC_DQUO`, `KC_DQT`|`"`                |
428 |`KC_LEFT_ANGLE_BRACKET` |`KC_LABK`, `KC_LT` |`<`                |
429 |`KC_RIGHT_ANGLE_BRACKET`|`KC_RABK`, `KC_GT` |`>`                |
430 |`KC_QUESTION`           |`KC_QUES`          |`?`                |
431
432 ## [Switching and Toggling Layers](feature_advanced_keycodes.md#switching-and-toggling-layers)
433
434 |Key             |Description                                                                       |
435 |----------------|----------------------------------------------------------------------------------|
436 |`LT(layer, kc)` |Turn on `layer` when held, `kc` when tapped                                       |
437 |`TO(layer)`     |Turn on `layer` when pressed                                                      |
438 |`MO(layer)`     |Momentarily turn on `layer` when pressed (requires `KC_TRNS` on destination layer)|
439 |`DF(layer)`     |Set the base (default) layer                                                      |
440 |`TG(layer)`     |Toggle `layer` on or off                                                          |
441 |`TT(layer)`     |Normally acts like MO unless it's tapped multiple times, which toggles `layer` on |
442 |`LM(layer, mod)`|Momentarily turn on `layer` (like MO) with `mod` active as well.                  |
443
444 ## [One Shot Keys](feature_advanced_keycodes.md#one-shot-keys)
445
446 |Key         |Description                       |
447 |------------|----------------------------------|
448 |`OSM(mod)`  |Hold `mod` for one keypress       |
449 |`OSL(layer)`|Switch to `layer` for one keypress|
450
451
452 ## [Swap Hands](feature_swap_hands.md)
453
454 |Key        |Description                                                              |
455 |-----------|-------------------------------------------------------------------------|
456 |`SH_T(key)`|Sends `key` with a tap; momentary swap when held.                        |
457 |`SW_ON`    |Turns on swapping and leaves it on.                                      |
458 |`SW_OFF`   |Turn off swapping and leaves it off. Good for returning to a known state.|
459 |`SH_MON`   |Swaps hands when pressed, returns to normal when released (momentary).   |
460 |`SH_MOFF`  |Momentarily turns off swap.                                              |
461 |`SH_TG`    |Toggles swap on and off with every key press.                            |
462 |`SH_TT`    |Toggles with a tap; momentary when held.                                 |
463 ## [Unicode Support](feature_unicode.md)
464
465 |Key         |Aliases|                                                 |
466 |------------|-------|-------------------------------------------------|
467 |`UNICODE(n)`|`UC(n)`|Send Unicode character `n`                       |
468 |`X(n)`      |       |Send Unicode character `n` via a different method|