Minor cleanup

master
Mark 2022-11-20 12:05:11 -08:00
parent 6f60ddc9cf
commit d795d84f41
Signed by: Mark
GPG Key ID: AD62BB059C2AAEE4
2 changed files with 1 additions and 22 deletions

View File

@ -48,22 +48,6 @@ void matrix_scan_user(void) {
SEND_STRING(SECRET_SCHOOL_EMAIL);
}
SEQ_TWO_KEYS(KC_S, KC_H) {
send_special_character(M_SC_SHRUG);
}
SEQ_THREE_KEYS(KC_Y, KC_A, KC_E) {
send_special_character(M_SC_YAE);
}
SEQ_FOUR_KEYS(KC_L, KC_Y, KC_U, KC_S) {
send_special_character(M_SC_LYUS);
}
SEQ_FOUR_KEYS(KC_B, KC_Y, KC_U, KC_S) {
send_special_character(M_SC_BYUS);
}
//SEQ_ONE_KEY(KC_F) {}
//
//SEQ_TWO_KEYS(KC_A, KC_S) {

View File

@ -38,7 +38,7 @@ enum custom_keycodes {
// bounds used to parse these. Only special
// characters should be between them.
//
// Also, characters here should be in the same
// Сharacters here should be in the same
// order as they are in the host inteface.
M_SPECIAL_TOP,
M_SC_GRAVE,
@ -50,10 +50,5 @@ enum custom_keycodes {
M_SC_RCBR,
M_SC_LKVCH,
M_SC_RKVCH,
M_SC_LYUS,
M_SC_BYUS,
M_SC_YAE,
M_SC_SHRUG,
M_SPECIAL_BOTTOM
};