Add support for key override introspection. (#24120)

This commit is contained in:
Nick Brassel
2024-07-16 09:22:17 +10:00
committed by GitHub
parent fef8e7195b
commit 8abaa3bc2d
6 changed files with 90 additions and 25 deletions

19
docs/ChangeLog/PR24120.md Normal file
View File

@@ -0,0 +1,19 @@
## Changes requiring user action
### Key Override Introspection
Changes were made to key overrides in order to hook them into the keymap introspection system.
Key override signature changed from:
```c
const key_override_t **key_overrides = (const key_override_t *[]){
```
to:
```c
const key_override_t *key_overrides[] = {
```
The list of key overrides now does not need to be `NULL`-terminated.