inquire 0.9.4

inquire is a library for building interactive prompts on terminals
Documentation
use crate::MultiSelect;

/// Configuration settings used in the execution of a MultiSelectPrompt.
#[derive(Copy, Clone, Debug)]
pub struct MultiSelectConfig {
    /// Whether to use vim-style keybindings.
    pub vim_mode: bool,
    /// Page size of the list of options.
    pub page_size: usize,
    /// Whether to keep the filter text when an option is selected.
    pub keep_filter: bool,
    /// Whether to reset the cursor to the first option on filter input change.
    pub reset_cursor: bool,
}

impl<T> From<&MultiSelect<'_, T>> for MultiSelectConfig {
    fn from(value: &MultiSelect<'_, T>) -> Self {
        Self {
            vim_mode: value.vim_mode,
            page_size: value.page_size,
            keep_filter: value.keep_filter,
            reset_cursor: value.reset_cursor,
        }
    }
}