This commit is contained in:
alice pellerin
2026-03-18 17:30:43 -05:00
parent 7695d23984
commit 0a98df9000
6 changed files with 74 additions and 19 deletions
+5 -3
View File
@@ -17,7 +17,8 @@ const BYTES_PER_CHUNK: usize = 4;
const CHUNKS_PER_LINE: usize = BYTES_PER_LINE / BYTES_PER_CHUNK;
// TODO:
// - undo/redo
// - multiple buffers (tabs)
// - search
// - modifications
// - insert/append
// - mode
@@ -26,8 +27,6 @@ const CHUNKS_PER_LINE: usize = BYTES_PER_LINE / BYTES_PER_CHUNK;
// - replace-and-keep-going
// - mode
// - change
// - saving
// - search
// - edit character panel
// - modifier on existing keys like teehee? or jump to panel?
// - if jump to panel, space?
@@ -51,6 +50,9 @@ const CHUNKS_PER_LINE: usize = BYTES_PER_LINE / BYTES_PER_CHUNK;
// - utf8?
// - diffing
// TODO: opening empty file crashes (or deleting entire file)
// - cursor is NOT guaranteed to be in-bounds..?
// when AsciiChar is stabilized, use it instead of char everywhere
fn main() {