gitextract_909sqtf7/ ├── .cargo/ │ ├── release-nightly.toml │ ├── release-windows-ms.toml │ └── release.toml ├── .devcontainer/ │ └── devcontainer.json ├── .github/ │ └── workflows/ │ ├── ci.yml │ └── winget.yml ├── .gitignore ├── .pipelines/ │ ├── release.yml │ └── tsa.json ├── .vscode/ │ ├── launch.json │ └── tasks.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Cargo.toml ├── LICENSE ├── README.md ├── SECURITY.md ├── assets/ │ ├── com.microsoft.edit.desktop │ ├── editing-traces/ │ │ ├── README.md │ │ └── rustcode.json.zst │ ├── highlighting-tests/ │ │ └── json.json │ ├── manpage/ │ │ └── edit.1 │ ├── microsoft.sixel │ └── snapcraft.yaml ├── crates/ │ ├── edit/ │ │ ├── Cargo.toml │ │ ├── benches/ │ │ │ └── lib.rs │ │ ├── build/ │ │ │ ├── helpers.rs │ │ │ ├── i18n.rs │ │ │ └── main.rs │ │ └── src/ │ │ ├── base64.rs │ │ ├── bin/ │ │ │ └── edit/ │ │ │ ├── apperr.rs │ │ │ ├── documents.rs │ │ │ ├── draw_editor.rs │ │ │ ├── draw_filepicker.rs │ │ │ ├── draw_menubar.rs │ │ │ ├── draw_statusbar.rs │ │ │ ├── edit.exe.manifest │ │ │ ├── localization.rs │ │ │ ├── main.rs │ │ │ └── state.rs │ │ ├── buffer/ │ │ │ ├── gap_buffer.rs │ │ │ ├── line_cache.rs │ │ │ ├── mod.rs │ │ │ └── navigation.rs │ │ ├── cell.rs │ │ ├── clipboard.rs │ │ ├── document.rs │ │ ├── framebuffer.rs │ │ ├── fuzzy.rs │ │ ├── glob.rs │ │ ├── hash.rs │ │ ├── helpers.rs │ │ ├── icu.rs │ │ ├── input.rs │ │ ├── json.rs │ │ ├── lib.rs │ │ ├── oklab.rs │ │ ├── path.rs │ │ ├── simd/ │ │ │ ├── lines_bwd.rs │ │ │ ├── lines_fwd.rs │ │ │ ├── memchr2.rs │ │ │ └── mod.rs │ │ ├── sys/ │ │ │ ├── mod.rs │ │ │ ├── unix.rs │ │ │ └── windows.rs │ │ ├── tui.rs │ │ ├── unicode/ │ │ │ ├── measurement.rs │ │ │ ├── mod.rs │ │ │ └── tables.rs │ │ └── vt.rs │ ├── stdext/ │ │ ├── Cargo.toml │ │ └── src/ │ │ ├── alloc.rs │ │ ├── arena/ │ │ │ ├── debug.rs │ │ │ ├── fs.rs │ │ │ ├── mod.rs │ │ │ ├── release.rs │ │ │ └── scratch.rs │ │ ├── collections/ │ │ │ ├── mod.rs │ │ │ ├── string.rs │ │ │ └── vec.rs │ │ ├── helpers.rs │ │ ├── lib.rs │ │ ├── simd/ │ │ │ ├── memset.rs │ │ │ └── mod.rs │ │ ├── sys/ │ │ │ ├── mod.rs │ │ │ ├── unix.rs │ │ │ └── windows.rs │ │ └── unicode/ │ │ ├── mod.rs │ │ └── utf8.rs │ └── unicode-gen/ │ ├── Cargo.toml │ ├── README.md │ └── src/ │ ├── main.rs │ └── rules.rs ├── i18n/ │ └── edit.toml ├── rust-toolchain.toml └── rustfmt.toml