joshuto 0.9.4

Terminal file manager inspired by ranger
use crate::commands::*;
use crate::context::AppContext;

use super::{Command, InteractiveExecute};

impl InteractiveExecute for Command {
    #[allow(clippy::single_match)]
    fn interactive_execute(&self, context: &mut AppContext) {
        match self {
            Self::SearchIncremental(pattern) => {
                search_string::search_string(context, pattern.as_str(), true)
            }
            _ => (),
        }
    }
}