Skip to main content

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 options;
10pub mod search;
11pub mod syntax;
12pub mod wordops;
13pub mod wrap;
14
15#[cfg(feature = "files")]
16pub mod files;
17
18#[cfg(feature = "egui")]
19pub mod widget;