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:
parent
141f5595ff
commit
4c98cf33e3
3 changed files with 23 additions and 9 deletions
|
|
@ -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,
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue