typ_buffer/lib.rs
1pub mod buffer;
2pub mod change;
3pub mod position;
4pub mod search;
5pub mod selection;
6pub mod undo;
7pub mod word;
8
9pub use buffer::TextBuffer;
10pub use change::Shift;
11pub use position::{
12 Position, display_to_grapheme_col, display_width, display_width_with_tabs,
13 grapheme_to_display_col,
14};
15pub use search::{SearchQuery, find_in_line};
16pub use selection::{Selection, Selections};
17pub use undo::EditKind;
18pub use word::{next_word_boundary, previous_word_boundary, word_at};