Remove deprecated RGB_ and Mouse keycodes (#25444)

* Remove deprecated `RGB_` and Mouse keycodes

* Update old mouse keycodes, 0-9/A-M

* Update old mouse keycodes, N-Z & layouts

* Missed some stuff
This commit is contained in:
Ryan 2025-07-12 03:05:41 +10:00 committed by GitHub
parent 71b88b333d
commit 6b38dc17cd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
325 changed files with 911 additions and 964 deletions

View file

@ -131,7 +131,7 @@ TEST_F(Pointing, CorrectButtonIsReportedWhenPressed) {
TEST_F(Pointing, CorrectButtonIsReportedWhenKeyPressed) {
TestDriver driver;
auto key = KeymapKey(0, 0, 0, KC_MS_BTN1);
auto key = KeymapKey(0, 0, 0, QK_MOUSE_BUTTON_1);
set_keymap({key});
EXPECT_MOUSE_REPORT(driver, (0, 0, 0, 0, 1));