mod constructors;
mod methods;
use crossterm::event::KeyEvent;
#[derive(Debug, Clone)]
pub struct TermTuiKeyBindings {
pub enter_copy_mode: KeyEvent,
pub copy_selection: KeyEvent,
pub copy_exit: KeyEvent,
pub copy_exit_alt: KeyEvent,
pub copy_move_up: KeyEvent,
pub copy_move_up_alt: KeyEvent,
pub copy_move_down: KeyEvent,
pub copy_move_down_alt: KeyEvent,
pub copy_move_left: KeyEvent,
pub copy_move_left_alt: KeyEvent,
pub copy_move_right: KeyEvent,
pub copy_move_right_alt: KeyEvent,
pub copy_line_start: KeyEvent,
pub copy_line_start_alt: KeyEvent,
pub copy_line_end: KeyEvent,
pub copy_line_end_alt: KeyEvent,
pub copy_page_up: KeyEvent,
pub copy_page_up_alt: KeyEvent,
pub copy_page_down: KeyEvent,
pub copy_page_down_alt: KeyEvent,
pub copy_top: KeyEvent,
pub copy_bottom: KeyEvent,
pub copy_word_left: KeyEvent,
pub copy_word_right: KeyEvent,
pub copy_start_selection: KeyEvent,
pub copy_start_selection_alt: KeyEvent,
pub copy_and_exit: KeyEvent,
pub copy_and_exit_alt: KeyEvent,
}