redox-core 0.2.1

Core text editing primitives for the redox-editor project
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Convenience re-exports for the `buffer` module.
//!
//! The plan:
//! - `use redox-core::buffer::prelude::*;` in higher-level editor code.
//! - keep call sites clean without importing many individual symbols.

pub use super::Edit;
pub use super::Pos;
pub use super::Selection;
pub use super::TextBuffer;
pub use super::VisualSelectionEditPlan;