diff options
| author | Ryan <fauxpark@gmail.com> | 2022-12-14 13:44:36 +1100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-14 13:44:36 +1100 |
| commit | 9e4cfcd181a87c4f8adfaef5a766f788263ff60a (patch) | |
| tree | f9afb3b5fbd25d1630bb7a4b704e39a0b99a9c64 /users | |
| parent | 515dd18c2801663bbac0e59f683c2a93e4bd9b1a (diff) | |
UCIS: remove `qk_` prefix (#19302)
Diffstat (limited to 'users')
| -rw-r--r-- | users/uqs/uqs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/users/uqs/uqs.c b/users/uqs/uqs.c index 82cf70c439..bccab617ac 100644 --- a/users/uqs/uqs.c +++ b/users/uqs/uqs.c | |||
| @@ -543,7 +543,7 @@ void matrix_scan_user(void) { | |||
| 543 | 543 | ||
| 544 | #ifdef UCIS_ENABLE | 544 | #ifdef UCIS_ENABLE |
| 545 | SEQ_ONE_KEY(KC_U) { | 545 | SEQ_ONE_KEY(KC_U) { |
| 546 | qk_ucis_start(); | 546 | ucis_start(); |
| 547 | } | 547 | } |
| 548 | #endif | 548 | #endif |
| 549 | SEQ_ONE_KEY(KC_H) { | 549 | SEQ_ONE_KEY(KC_H) { |
| @@ -576,7 +576,7 @@ void matrix_scan_user(void) { | |||
| 576 | 576 | ||
| 577 | #ifdef UCIS_ENABLE | 577 | #ifdef UCIS_ENABLE |
| 578 | // 3 codepoints at most, otherwise increase UCIS_MAX_CODE_POINTS | 578 | // 3 codepoints at most, otherwise increase UCIS_MAX_CODE_POINTS |
| 579 | const qk_ucis_symbol_t ucis_symbol_table[] = UCIS_TABLE( | 579 | const ucis_symbol_t ucis_symbol_table[] = UCIS_TABLE( |
| 580 | UCIS_SYM("poop", 0x1F4A9), // 💩 | 580 | UCIS_SYM("poop", 0x1F4A9), // 💩 |
| 581 | UCIS_SYM("rofl", 0x1F923), // 🤣 | 581 | UCIS_SYM("rofl", 0x1F923), // 🤣 |
| 582 | UCIS_SYM("look", 0x0CA0, 0x005F, 0x0CA0) // ಠ_ಠ| 582 | UCIS_SYM("look", 0x0CA0, 0x005F, 0x0CA0) // ಠ_ಠ|
