Remove legacy keycodes, part 4 (#18683)

* `KC_PGDOWN` -> `KC_PGDN`

* `KC_PSCREEN` -> `KC_PSCR`

* `KC_SCOLON` -> `KC_SCLN`

* `KC_BSLASH` -> `KC_BSLS`

* `KC_BSPACE` -> `KC_BSPC`
This commit is contained in:
Ryan 2022-10-14 04:28:14 +11:00 committed by GitHub
parent 636bc1c29a
commit 9a12565455
41 changed files with 55 additions and 55 deletions

View file

@ -28,7 +28,7 @@ bool encoder_update_user(uint8_t index, bool clockwise) {
}
} else if (index == 1) {
if (clockwise) {
tap_code(KC_PGDOWN);
tap_code(KC_PGDN);
} else {
tap_code(KC_PGUP);
}