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 wordops;