Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jmacdonald/scribe

Text editor components
https://github.com/jmacdonald/scribe

Last synced: 4 days ago
JSON representation

Text editor components

Awesome Lists containing this project

README

        

# Scribe: A text editor toolkit

Scribe was extracted from [Amp](https://amp.rs), a text editor written in Rust.
It provides a layered set of types for dealing with text documents.

* `GapBuffer` - Data structure optimized for successive, close-proximity edits.
* `Buffer` - Wrapper that provides bounds-checked cursor management, file
persistence, undo/redo (with grouping), lexing (scope-qualified tokens),
search, and more.
* `Workspace` - Collection of buffers with type detection, and buffer selection
and lexer management.

More documentation can be found [here](https://docs.rs/scribe).