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

@ -60,6 +60,8 @@ centered_view_min_screen_width: usize = 145,
lsp_output: enum { quiet, verbose } = .quiet,
keybind_mode: KeybindMode = .normal,
include_files: []const u8 = "",
const default_actions = [_]IdleAction{};
@ -139,3 +141,8 @@ pub const PaneStyle = enum {
panel,
editor,
};
pub const KeybindMode = enum {
normal,
ignore_alt_text_modifiers,
};