summaryrefslogtreecommitdiff
path: root/docs/ChangeLog
diff options
context:
space:
mode:
authorNick Brassel <nick@tzarc.org>2024-07-16 09:22:17 +1000
committerGitHub <noreply@github.com>2024-07-16 09:22:17 +1000
commit8abaa3bc2df4fda13a96d0c5c4ce74b70c974fb7 (patch)
tree3075091c9032beb60388dee536ecf0452f79035c /docs/ChangeLog
parentfef8e7195b09158a9b43ffd05df60128f3cd3ac3 (diff)
Add support for key override introspection. (#24120)
Diffstat (limited to 'docs/ChangeLog')
-rw-r--r--docs/ChangeLog/PR24120.md19
1 files changed, 19 insertions, 0 deletions
diff --git a/docs/ChangeLog/PR24120.md b/docs/ChangeLog/PR24120.md
new file mode 100644
index 0000000000..5c635349ea
--- /dev/null
+++ b/docs/ChangeLog/PR24120.md
@@ -0,0 +1,19 @@
1## Changes requiring user action
2
3### Key Override Introspection
4
5Changes were made to key overrides in order to hook them into the keymap introspection system.
6
7Key override signature changed from:
8
9```c
10const key_override_t **key_overrides = (const key_override_t *[]){
11```
12
13to:
14
15```c
16const key_override_t *key_overrides[] = {
17```
18
19The list of key overrides now does not need to be `NULL`-terminated.