highlight spaces between bytes when selected

This commit is contained in:
alice pellerin
2026-03-16 23:26:06 -05:00
parent 7a18c6cbfe
commit ce19c3eb9c
5 changed files with 106 additions and 55 deletions
+2
View File
@@ -5,11 +5,13 @@ use app::App;
mod cardinality;
mod empty_span;
mod select_grey;
mod app;
mod cursor;
const BYTES_PER_LINE: usize = 0x10;
const BYTES_PER_CHUNK: usize = 4;
const CHUNKS_PER_LINE: usize = BYTES_PER_LINE / BYTES_PER_CHUNK;
fn main() {
let mut app = App::init();