helix/helix-core/src/state.rs

18 lines
285 B
Rust
Raw Normal View History

use crate::{Rope, Selection};
#[derive(Debug, Clone)]
pub struct State {
pub doc: Rope,
pub selection: Selection,
}
impl State {
2020-05-28 13:45:44 +08:00
#[must_use]
pub fn new(doc: Rope) -> Self {
Self {
2020-06-01 16:42:28 +08:00
doc,
selection: Selection::point(0),
}
}
}