pinel 0.8.0

A lightweight editor built with rust
/// Text ropey (ropey) is used for text editor buffers in order to
/// back text-buffer and handle large amounts of texts
/// and memory-incoherent edits
///
///
/// This file provides structure and implementations for large amounts of text-editing
/// using the `ropey` package.
use ropey::Rope;

#[derive(Debug, Clone)]
pub struct EditorBuffer {
    rope: Rope,
}

/// Implementation functions for the Editor Buffer and passing data through lines
///
/// # Arguments
///
/// - `text` (`&str`) - Passed argument text used to perform actions.
#[allow(dead_code)]
impl EditorBuffer {
    pub fn from_text(text: &str) -> Self {
        Self {
            rope: Rope::from_str(text),
        }
    }

    pub fn text(&self) -> String {
        self.rope.to_string()
    }

    pub fn set_text(&mut self, text: &str) {
        self.rope = Rope::from_str(text);
    }

    pub fn line_count(&self) -> usize {
        self.rope.len_lines().max(1)
    }

    pub fn line(&self, line_idx: usize) -> String {
        self.rope.line(line_idx).to_string()
    }
}