redox-core 0.4.0

Core text editing primitives for the redox-editor project
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! 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::TextObjectEditPlan;
pub use super::TextObjectKind;
pub use super::TextObjectScope;
pub use super::TextObjectSpec;
pub use super::VisualModeKind;
pub use super::VisualSelectionEditPlan;