idet-core 0.2.0

Shared text-editing library for a Micro-like terminal editor and a gedit-like egui GUI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! 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 syntax;
pub mod wordops;

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

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