A Rust implementation of the Kilo text editor tutorial: https://viewsourcecode.org/snaptoken/kilo/index.html
Go to file
Timothy Warren 389a526f41 Finish tutorial, much refactoring 2019-09-05 15:26:04 -04:00
src Finish tutorial, much refactoring 2019-09-05 15:26:04 -04:00
.gitignore Ugly progress commit 2019-08-22 14:25:18 -04:00
Cargo.lock Create language syntax struct, and select highlighting by file extension 2019-09-04 15:41:06 -04:00
Cargo.toml Create language syntax struct, and select highlighting by file extension 2019-09-04 15:41:06 -04:00
README.md Update readme 2019-09-03 16:39:12 -04:00

README.md

Oxidized Kilo

An experimental reimplementation of the Kilo tutorial with a Rust implementation.

Implementation notes:

  • The editor prefix has been removed from all the editor methods. Since this implementation uses impls on a shared Editor struct, the prefix is redundant
  • Any C equivalent functionality based on memory allocating/deallocating, or other manual book-keeping is instead implemented in a more idiomatic Rust fashion.

Known issues:

  • The cursor is invisible :(