reovim-driver-session 0.14.4

Session driver for reovim - provides traits for session management
Documentation
//! Search state extension for session.
//!
//! Provides shared search state that both the runner and modules can access.
//! This stores the last search pattern and direction for n/N repeat.

use {crate::SessionExtension, reovim_driver_search::Direction};

/// Per-session search state.
///
/// Stores the last search pattern and direction for n, N, *, # commands.
/// Also tracks pending search input when user presses `/` or `?`.
#[derive(Debug, Default)]
pub struct SearchState {
    /// Last search pattern (regex format).
    pub last_pattern: Option<String>,

    /// Last search direction (forward or backward).
    pub last_direction: Direction,

    /// Pending search direction (set when entering search input mode).
    ///
    /// When Some, indicates we're in search input mode and which direction
    /// the search will go when Enter is pressed.
    pub pending_search: Option<Direction>,
}

impl SessionExtension for SearchState {
    fn create() -> Self {
        Self::default()
    }
}

impl SearchState {
    /// Set the search pattern and direction.
    pub fn set(&mut self, pattern: String, direction: Direction) {
        self.last_pattern = Some(pattern);
        self.last_direction = direction;
    }

    /// Get the pattern for repeat search (n).
    #[must_use]
    pub fn pattern_for_repeat(&self) -> Option<&str> {
        self.last_pattern.as_deref()
    }

    /// Get the direction for repeat search (n).
    #[must_use]
    pub const fn direction_for_repeat(&self) -> Direction {
        self.last_direction
    }

    /// Get the reversed direction for opposite repeat (N).
    #[must_use]
    pub const fn direction_for_opposite(&self) -> Direction {
        match self.last_direction {
            Direction::Forward => Direction::Backward,
            Direction::Backward => Direction::Forward,
        }
    }

    /// Start pending search (called when `/` or `?` is pressed).
    pub const fn start_pending_search(&mut self, direction: Direction) {
        self.pending_search = Some(direction);
    }

    /// Take the pending search direction (clears it).
    ///
    /// Called when command-line mode exits to get the search direction.
    pub const fn take_pending_search(&mut self) -> Option<Direction> {
        // Manual implementation since Option::take() is not const
        let result = self.pending_search;
        self.pending_search = None;
        result
    }

    /// Check if a search is pending.
    #[must_use]
    pub const fn has_pending_search(&self) -> bool {
        self.pending_search.is_some()
    }

    /// Clear pending search (called on cancel/escape).
    pub const fn clear_pending_search(&mut self) {
        self.pending_search = None;
    }
}
#[cfg(test)]
#[path = "tests/search.rs"]
mod tests;