idet_core/lib.rs
1//! Backend-agnostic editing logic for the text editor: word autocomplete,
2//! line moves, word swaps and indentation edits.
3#![deny(missing_docs)]
4
5pub mod brackets;
6pub mod completion;
7pub mod edits;
8pub mod lineops;
9pub mod syntax;
10pub mod wordops;
11
12#[cfg(feature = "files")]
13pub mod files;
14
15#[cfg(feature = "egui")]
16pub mod widget;