refactor: add dropdown_keybinds configuration option
This commit is contained in:
parent
d59dc65e6b
commit
c4301c40d9
3 changed files with 24 additions and 2 deletions
|
|
@ -71,6 +71,7 @@ centered_view_min_screen_width: usize = 145,
|
|||
lsp_output: enum { quiet, verbose } = .quiet,
|
||||
|
||||
keybind_mode: KeybindMode = .normal,
|
||||
dropdown_keybinds: DropdownKeybindMode = .standard,
|
||||
|
||||
include_files: []const u8 = "",
|
||||
|
||||
|
|
@ -158,6 +159,11 @@ pub const KeybindMode = enum {
|
|||
ignore_alt_text_modifiers,
|
||||
};
|
||||
|
||||
pub const DropdownKeybindMode = enum {
|
||||
standard,
|
||||
noninvasive,
|
||||
};
|
||||
|
||||
pub const InitialFindQuery = enum {
|
||||
empty,
|
||||
selection,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue