pinel 0.8.0

A lightweight editor built with rust
//! Vim-style `:` command input bar
//! Ported from pinel's hotkey/command_input.rs, adapted for iced.

#[derive(Default)]
pub struct CommandInput {
    pub open: bool,
    pub input: String,
}

impl CommandInput {
    pub fn open(&mut self) {
        self.open = true;
        self.input.clear();
    }

    pub fn close(&mut self) {
        self.open = false;
    }

    /// Process the command in a vim command style
    ///
    /// # Arguments
    ///
    /// - `&self` (`undefined`) - Provides variables and functions avaiable for `Self` usage
    ///
    /// # Returns
    ///
    /// - `Option<String>` - Returns the option chosen based on the input
    pub fn process_command(&self) -> Option<String> {
        let cmd = self.input.trim();
        if cmd.is_empty() {
            return None;
        }

        match cmd {
            "w" | "write" => Some("Save File".to_string()),
            "q" | "quit" => Some("Quit".to_string()),
            "wq" => Some("Save and Quit".to_string()),
            "e" | "edit" => Some("Open File".to_string()),
            "new" => Some("New File".to_string()),
            _ => None,
        }
    }
}