Feature-ify Send String (#17275)

This commit is contained in:
Ryan 2022-07-02 22:10:08 +10:00 committed by GitHub
parent 7e41eb0277
commit 3ecb0a80af
Failed to generate hash of commit
12 changed files with 892 additions and 623 deletions

View file

@ -22,12 +22,14 @@
#endif
static void tapping_term_report(void) {
#ifdef SEND_STRING_ENABLE
const char *tapping_term_str = get_u16_str(g_tapping_term, ' ');
// Skip padding spaces
while (*tapping_term_str == ' ') {
tapping_term_str++;
}
send_string(tapping_term_str);
#endif
}
bool process_dynamic_tapping_term(uint16_t keycode, keyrecord_t *record) {