dz6 0.5.1

A vim-inspired, TUI-based hexadecimal editor
use crate::themes::*;

// command input history size
pub const CMD_INPUT_HIST_SIZE: usize = 50;

pub struct Config {
    pub database: bool,
    pub dim_control_chars: bool,
    pub dim_zeroes: bool,
    pub hex_mode_bytes_per_line: usize,
    pub hex_mode_bytes_per_line_auto: bool,
    pub hex_mode_non_graphic_char: char,
    pub maximum_strings_to_show: usize,
    pub minimum_string_length: usize,
    pub search_wrap: bool,
    pub theme: Theme,
    // pub hex_mode_dword_separator: char,
    // pub text_mode_tab_spaces: usize,
}