pub mod brackets;
pub mod buffer;
pub mod change;
pub mod clipboard;
pub mod line_ending;
pub mod position;
pub mod search;
pub mod selection;
pub mod undo;
pub mod watch;
pub mod word;
pub use buffer::TextBuffer;
pub use change::Shift;
pub use line_ending::LineEnding;
pub use position::{
Position, display_to_grapheme_col, display_width, display_width_with_tabs,
grapheme_to_display_col,
};
pub use search::{SearchQuery, find_in_line};
pub use selection::{Selection, Selections};
pub use undo::EditKind;
pub use watch::{FileWatch, watch_file};
pub use word::{next_word_boundary, previous_word_boundary, word_at};