aboutsummaryrefslogtreecommitdiff
path: root/docs/feature_macros.md
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2021-11-04 16:22:17 +1100
committerGitHub <noreply@github.com>2021-11-03 22:22:17 -0700
commitf529580860cf5a1de4afc10432f218a45daae17a (patch)
tree1d2fa041174f2586230ab831c05e5b56d8ba4f92 /docs/feature_macros.md
parentb06d9d822cfb72e0728b11711a333f2f5d3c631e (diff)
downloadqmk_firmware-f529580860cf5a1de4afc10432f218a45daae17a.tar.gz
qmk_firmware-f529580860cf5a1de4afc10432f218a45daae17a.zip
Basic keycode overhaul (#14726)
Diffstat (limited to 'docs/feature_macros.md')
-rw-r--r--docs/feature_macros.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/feature_macros.md b/docs/feature_macros.md
index 3660f3775..6807111ca 100644
--- a/docs/feature_macros.md
+++ b/docs/feature_macros.md
@@ -118,7 +118,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
118void post_process_record_user(uint16_t keycode, keyrecord_t *record) { 118void post_process_record_user(uint16_t keycode, keyrecord_t *record) {
119 switch (keycode) { 119 switch (keycode) {
120 case KC_A ... KC_F21: //notice how it skips over F22 120 case KC_A ... KC_F21: //notice how it skips over F22
121 case KC_F23 ... KC_EXSEL: //exsel is the last one before the modifier keys 121 case KC_F23 ... KC_EXSL: //exsel is the last one before the modifier keys
122 if (!record->event.pressed) { 122 if (!record->event.pressed) {
123 f22_tracker--; 123 f22_tracker--;
124 if (!f22_tracker) { 124 if (!f22_tracker) {