refactor: make keybind.Binding public

This commit is contained in:
CJ van den Berg 2025-12-01 15:53:22 +01:00
parent 3221e2dd39
commit 0666893151
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9

View file

@ -423,7 +423,7 @@ const Command = struct {
}; };
//An association of an command with a triggering key chord //An association of an command with a triggering key chord
const Binding = struct { pub const Binding = struct {
key_events: []KeyEvent, key_events: []KeyEvent,
commands: []Command, commands: []Command,