checkpoint on memory view improvements; bugfixes, improved visualizations, & mutation controls

This commit is contained in:
Ryan Fleury
2026-04-09 11:07:00 -07:00
parent be270a8f8d
commit 9aa63bc86c
5 changed files with 147 additions and 33 deletions
+3 -1
View File
@@ -546,12 +546,14 @@ RD_VocabTable:
'size': expr_string,
@display_name("Cursor Address") @description("The address of the cursor.")
'cursor': expr_string,
@display_name("Cursor Size") @description("The size, in bytes, of the cursor.")
@default(1) @display_name("Cursor Size") @description("The size, in bytes, of the cursor.")
'cursor_size': @range[1, 16] u64,
@default(16) @description("The number of columns to build before building new rows.")
'num_columns': @range[1, 64] u64,
@default(1) @display_name("Track Mark To Cursor") @description("Ensures that the mark always follows the cursor, if the cursor value is updated.")
'track_mark_to_cursor': bool,
@default(0) @display_name("Edit Mode") @description("Enables editing operations on memory contents.")
'edit_mode': bool,
}
```
}