kode-core 0.2.5

Framework-agnostic text editor core — buffer, selection, undo, and edit primitives built on ropey
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod buffer;
mod completion;
mod diagnostic;
mod editor;
mod history;
mod marker;
mod selection;
mod transaction;

pub use buffer::Buffer;
pub use completion::*;
pub use diagnostic::{Diagnostic, DiagnosticSeverity};
pub use editor::Editor;
pub use history::History;
pub use marker::{Marker, MarkerSeverity};
pub use selection::{Position, Selection};
pub use transaction::{EditStep, Transaction};