Remove legacy sendstring keycodes (#18749)

This commit is contained in:
Ryan
2022-10-17 23:45:23 +11:00
committed by GitHub
parent c57330d340
commit bad8c5992b
73 changed files with 581 additions and 557 deletions

View File

@@ -147,7 +147,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
// Control + T
case NEWTAB:
if (record->event.pressed) {
SEND_STRING(SS_LCTRL("t"));
SEND_STRING(SS_LCTL("t"));
}
break;
// Alt + F4
@@ -159,13 +159,13 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
// Control + W
case CLSTAB:
if (record->event.pressed) {
SEND_STRING(SS_LCTRL("w"));
SEND_STRING(SS_LCTL("w"));
}
break;
// Control + Shift + N
case PRVWIN:
if (record->event.pressed) {
SEND_STRING(SS_LCTRL(SS_LSFT("n")));
SEND_STRING(SS_LCTL(SS_LSFT("n")));
}
break;
}