# ![Application Icon for Edit](./assets/edit.svg) Edit A simple editor for simple needs. This editor pays homage to the classic [MS-DOS Editor](https://en.wikipedia.org/wiki/MS-DOS_Editor), but with a modern interface and input controls similar to VS Code. The goal is to provide an accessible editor that even users largely unfamiliar with terminals can easily use. ![Screenshot of Edit with the About dialog in the foreground](./assets/edit_hero_image.png) ## Installation [![Packaging status](https://repology.org/badge/vertical-allrepos/microsoft-edit.svg?exclude_unsupported=1)](https://repology.org/project/microsoft-edit/versions) You can also download binaries from [our Releases page](https://github.com/microsoft/edit/releases/latest). ### Windows You can install the latest version with WinGet: ```powershell winget install Microsoft.Edit ``` ### Notes to Package Maintainers The canonical executable name is "edit" and the alternative name is "msedit". We're aware of the potential conflict of "edit" with existing commands and as such recommend naming packages and executables "msedit". Names such as "ms-edit" should be avoided. Assigning an "edit" alias is recommended if possible. ## Build Instructions * [Install Rust](https://www.rust-lang.org/tools/install) * Install the nightly toolchain: `rustup install nightly` * Alternatively, set the environment variable `RUSTC_BOOTSTRAP=1` * Clone the repository * For a release build, run: `cargo build --config .cargo/release.toml --release`