//! Backend-agnostic editing logic for the text editor: word autocomplete,
//! line moves, word swaps and indentation edits.
#![deny(missing_docs)]
pub mod brackets;
pub mod carets;
pub mod completion;
pub mod edits;
pub mod lineops;
pub mod options;
pub mod positions;
pub mod search;
pub mod syntax;
pub mod wordops;
pub mod wrap;
#[cfg(feature = "files")]
pub mod files;
#[cfg(feature = "egui")]
pub mod widget;