idet-core 0.3.0

Shared text-editing library for a Micro-like terminal editor and a gedit-like egui GUI
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;