gitextract_lra3dm9g/ ├── .github/ │ └── workflows/ │ ├── linux.yml │ └── windows.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── build.rs ├── hexerator-plugin-api/ │ ├── Cargo.toml │ └── src/ │ └── lib.rs ├── lua/ │ ├── color.lua │ └── fill.lua ├── plugins/ │ └── hello-world/ │ ├── Cargo.toml │ └── src/ │ └── lib.rs ├── rust-toolchain.toml ├── rustfmt.toml ├── scripts/ │ └── gen-prim-test-file.rs ├── src/ │ ├── app/ │ │ ├── backend_command.rs │ │ ├── command.rs │ │ ├── debug.rs │ │ ├── edit_state.rs │ │ ├── interact_mode.rs │ │ └── presentation.rs │ ├── app.rs │ ├── args.rs │ ├── backend/ │ │ └── sfml.rs │ ├── backend.rs │ ├── color.rs │ ├── config.rs │ ├── damage_region.rs │ ├── data.rs │ ├── dec_conv.rs │ ├── edit_buffer.rs │ ├── find_util.rs │ ├── gui/ │ │ ├── bottom_panel.rs │ │ ├── command.rs │ │ ├── dialogs/ │ │ │ ├── auto_save_reload.rs │ │ │ ├── jump.rs │ │ │ ├── lua_color.rs │ │ │ ├── lua_fill.rs │ │ │ ├── pattern_fill.rs │ │ │ ├── truncate.rs │ │ │ └── x86_asm.rs │ │ ├── dialogs.rs │ │ ├── egui_ui_ext.rs │ │ ├── file_ops.rs │ │ ├── inspect_panel.rs │ │ ├── message_dialog.rs │ │ ├── ops.rs │ │ ├── root_ctx_menu.rs │ │ ├── selection_menu.rs │ │ ├── top_menu/ │ │ │ ├── analysis.rs │ │ │ ├── cursor.rs │ │ │ ├── edit.rs │ │ │ ├── file.rs │ │ │ ├── help.rs │ │ │ ├── meta.rs │ │ │ ├── perspective.rs │ │ │ ├── plugins.rs │ │ │ ├── scripting.rs │ │ │ └── view.rs │ │ ├── top_menu.rs │ │ ├── top_panel.rs │ │ ├── windows/ │ │ │ ├── about.rs │ │ │ ├── bookmarks.rs │ │ │ ├── debug.rs │ │ │ ├── external_command.rs │ │ │ ├── file_diff_result.rs │ │ │ ├── find_dialog.rs │ │ │ ├── find_memory_pointers.rs │ │ │ ├── layouts.rs │ │ │ ├── lua_console.rs │ │ │ ├── lua_editor.rs │ │ │ ├── lua_help.rs │ │ │ ├── lua_watch.rs │ │ │ ├── meta_diff.rs │ │ │ ├── open_process.rs │ │ │ ├── perspectives.rs │ │ │ ├── preferences.rs │ │ │ ├── regions.rs │ │ │ ├── script_manager.rs │ │ │ ├── structs.rs │ │ │ ├── vars.rs │ │ │ ├── views.rs │ │ │ └── zero_partition.rs │ │ └── windows.rs │ ├── gui.rs │ ├── hex_conv.rs │ ├── hex_ui.rs │ ├── input.rs │ ├── layout.rs │ ├── main.rs │ ├── meta/ │ │ ├── perspective.rs │ │ ├── region.rs │ │ └── value_type.rs │ ├── meta.rs │ ├── meta_state.rs │ ├── parse_radix.rs │ ├── plugin.rs │ ├── result_ext.rs │ ├── scripting.rs │ ├── session_prefs.rs │ ├── shell.rs │ ├── slice_ext.rs │ ├── source.rs │ ├── str_ext.rs │ ├── struct_meta_item.rs │ ├── timer.rs │ ├── update.rs │ ├── util.rs │ ├── value_color.rs │ ├── view/ │ │ └── draw.rs │ ├── view.rs │ └── windows.rs └── test_files/ ├── empty-file └── plaintext.txt