Forgot to fix custom keycode enum

This commit is contained in:
Victor 2024-05-09 22:28:09 -05:00
parent d5a94942b8
commit 3298971de8
Failed to generate hash of commit
2 changed files with 8 additions and 7 deletions

View file

@ -38,11 +38,13 @@ void double_tap(uint16_t key, uint32_t ms) {
}
void insert_brackets(uint16_t left, uint16_t right, uint32_t ms) {
tap_code16(left);
wait_ms(ms);
tap_code16(right);
wait_ms(ms);
tap_code16(KC_LEFT);
}
bool process_tap_hold_key(keyrecord_t* record, uint16_t tap_keycode, uint16_t hold_keycode, int mode) {

View file

@ -21,19 +21,18 @@ enum keycodes {
TH_LABK,
TH_LBRC,
TH_LPRN,
TH_DQUO,
TH_SQUO,
TH_EQL,
TH_BSLS,
TH_SLSH,
TH_PIPE,
TH_COMM,
TH_DOT,
TH_PERC,
TH_EXLM,
TH_AT,
TH_QUES,
TH_EQL,
TH_MINS,
TH_GRV,
TH_SCLN,