1//! VT100TermKeyBindings::new constructor 2 3use crate::vt100_term::keybindings::VT100TermKeyBindings; 4 5impl VT100TermKeyBindings { 6 /// Create new keybindings with defaults 7 pub fn new() -> Self { 8 Self::default() 9 } 10}