replacing

This commit is contained in:
alice pellerin
2026-03-18 14:46:04 -05:00
parent bfc67a2671
commit ba3d80f111
7 changed files with 114 additions and 44 deletions
+10 -8
View File
@@ -18,23 +18,23 @@ const CHUNKS_PER_LINE: usize = BYTES_PER_LINE / BYTES_PER_CHUNK;
// TODO:
// - undo/redo
// - modes
// - select
// - insert
// - zz/zt/zb
// - modifications
// - replace
// - partial action(s)
// - insert/append
// - mode
// - replace
// - partial action
// - how this works with edit history is strange :/
// - add to edit history when *leaving* insert mode
// - replace-and-keep-going
// - mode
// - delete
// - change
// - saving
// - search
// - edit character panel
// - modifier on existing keys like teehee? or jump to panel?
// - if jump to panel, space?
// - search
// - zz/zt/zb
// - visual gg/G
// - jumplist
// - f/t
// - ascii?
@@ -53,6 +53,8 @@ const CHUNKS_PER_LINE: usize = BYTES_PER_LINE / BYTES_PER_CHUNK;
// - utf8?
// - diffing
// when AsciiChar is stabilized, use it instead of char everywhere
fn main() {
let mut app = App::init();
let mut terminal = ratatui::init();