Add Repeat Key and Alt Repeat Key to vial-qmk. (#906)

* Repeat Key for vial-qmk.

* Add new keycodes to vial_ensure_keycode.h.
This commit is contained in:
Pascal Getreuer 2025-06-29 14:32:04 -07:00 committed by GitHub
parent 000d5fd8d3
commit f5eb9a8e92
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 265 additions and 13 deletions

View file

@ -45,3 +45,8 @@ int nvm_dynamic_keymap_set_combo(uint8_t index, const vial_combo_entry_t *entry)
int nvm_dynamic_keymap_get_key_override(uint8_t index, vial_key_override_entry_t *entry);
int nvm_dynamic_keymap_set_key_override(uint8_t index, const vial_key_override_entry_t *entry);
#endif
#ifdef VIAL_ALT_REPEAT_KEY_ENABLE
int nvm_dynamic_keymap_get_alt_repeat_key(uint8_t index, vial_alt_repeat_key_entry_t *entry);
int nvm_dynamic_keymap_set_alt_repeat_key(uint8_t index, const vial_alt_repeat_key_entry_t *entry);
#endif