Move text editing to TextBuffer abstraction

This commit is contained in:
Jeremy Soller 2022-10-07 08:20:24 -06:00
parent f5ccd15761
commit 51639e53cb
No known key found for this signature in database
GPG key ID: 87F211AF2BE4C2FE
3 changed files with 270 additions and 206 deletions

View file

@ -1,2 +1,5 @@
pub use self::buffer::*;
mod buffer;
pub use self::font::*;
mod font;