1use crate::primitives::tree_view::keybindings::TreeKeyBindings; 2 3impl TreeKeyBindings { 4 /// Create new keybindings with defaults 5 pub fn new() -> Self { 6 Self::default() 7 } 8}