feat: add config option keybind_mode with workaround ignore_alt_text_modifiers

This option may be set to ignore_alt_text_modifiers to enable a workround
for #417
This commit is contained in:
CJ van den Berg 2025-12-06 18:12:44 +01:00
parent 141f5595ff
commit 4c98cf33e3
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
3 changed files with 23 additions and 9 deletions

View file

@ -198,7 +198,7 @@ fn init(allocator: Allocator) InitError!*Self {
try frame_clock.start();
try self.commands.init(self);
try keybind.init();
try keybind.init(self.config_.keybind_mode);
errdefer self.deinit();
switch (builtin.os.tag) {
.windows => {