redox-core 0.4.0

Core text editing primitives for the redox-editor project
Documentation
1
2
3
4
5
6
7
8
9
10
# redox-core

Core editor library for Redox.

This crate contains the editor primitives and behaviour that should stay independent of any UI:
- Rope-based text buffer (via `ropey`)
- Text indexing and cursor utilities (lines, columns, char indices, selections)
- Motions, text objects, search helpers, and small composable editing operations

Frontend crates should depend on `redox-core` and keep rendering, input mapping, and platform concerns outside this crate.