[Keymap] Drashna Keymap updates for 0.21.0 (#21073)

This commit is contained in:
Drashna Jaelre
2023-05-31 11:44:06 -07:00
committed by GitHub
parent 1411c79aef
commit 3a3e5abac9
71 changed files with 1609 additions and 2215 deletions

View File

@ -434,3 +434,13 @@ bool process_record_unicode(uint16_t keycode, keyrecord_t *record) {
void keyboard_post_init_unicode(void) {
unicode_input_mode_init();
}
/**
* @brief Set the unicode input mode without extra functionality
*
* @param input_mode
*/
void set_unicode_input_mode_soft(uint8_t input_mode) {
unicode_config.input_mode = input_mode;
unicode_input_mode_set_kb(input_mode);
}