idet-core 0.4.0

Editing logic for text editors, without a frontend
Documentation
//! 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 completion;
pub mod edits;
pub mod lineops;
pub mod options;
pub mod search;
pub mod syntax;
pub mod wordops;
pub mod wrap;

#[cfg(feature = "files")]
pub mod files;

#[cfg(feature = "egui")]
pub mod widget;