Add support for key override introspection. (#24120)
This commit is contained in:
parent
fef8e7195b
commit
8abaa3bc2d
6 changed files with 90 additions and 25 deletions
19
docs/ChangeLog/PR24120.md
Normal file
19
docs/ChangeLog/PR24120.md
Normal 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.
|
Loading…
Add table
Add a link
Reference in a new issue