Edit is a brand new text editor that runs inside the Windows command line. Christopher Nguyen of Microsoft explains that the tool comes straight from user requests for a default editor on 64-bit Windows, where the classic MS-DOS Edit is missing.
Edit keeps the essence of that older programme while adding a modern Text User Interface that feels closer to Visual Studio Code. According to Nguyen, Edit is open source, so anyone can inspect the code or build it from scratch. It will reach Windows 11 after a preview through the Windows Insider programme.
The entire application is lighter than 250 kB. That small size lets Microsoft ship it with every copy of Windows 11 without crowding the operating system. The menu bar sits at the top, and every menu item shows its keyboard shortcut. Because the editor is modeless, newcomers do not need to learn separate command modes.
Nguyen adds that Edit can open when a user types edit in the terminal or edit . That simple call brings a file into view without leaving the shell, trimming the pause that comes with launching a heavy graphical editor.
How Does Edit Simplify Daily Coding?
Edit carries some useful tricks that go far beyond plain text entry. Microsoft’s Build conference mentioned that the editor lets users open many files at once and jump between them with Ctrl+P or by clicking a file list shown in the lower-right corner.
Search and replace lives behind Ctrl+R, and it respects case matching as well as regular expressions. For longer prose or code comments, Alt+Z turns on word wrap so lines stay readable inside a narrow window. All of these actions sit inside a single TUI, so there is no need to reach for the mouse unless one prefers to.
Installation is quick, and Microsoft advises users to download the latest release archive from GitHub, extract it, and copy the binary called edit into any folder listed in the system path. Everything else in the archive can go straight to the recycle bin.
More from Startups
- Founder of the Week: Nick Brackenbury
- Online Searches For ‘Redundancy Rights’ Up 77% Since Autumn Budget
- 10 New Startups In Germany
- Startup Of The Week: UBQT
- Mental Health Awareness Month 2025: How Are Founders Creating Workplaces That Prioritise Wellbeing?
- Top 10 New Startups In Canada
- Top Countries To Start A Business in Digital Healthcare
- Top 10 New Startups In Finland
Why Does Edit Matter To Startups?
New companies often work under tight resource limits. A 250 kB editor that launches in an instant saves both memory and time, two assets every early-stage team guards closely. Because Edit opens inside the terminal, engineers can read logs, tweak configuration files, and rerun scripts without switching windows. That steady rhythm shortens feedback loops and keeps developers in flow.
Open source code brings extra confidence where teams can audit the editor, patch bugs, or add features that match their niche. The GitHub licence also removes licence fees, leaving more cash for marketing or staff salaries. As Microsoft pointed out, building Edit locally is as simple as installing Rust and running one cargo command, so even a single engineer can keep the tool up to date.
Startups that juggle many projects gain from multi-file support. With Ctrl+P, a user can keep environment files, Docker compose scripts, and README notes in one session. Find-and-replace with regular expressions lets a small team patch branding or API tokens across an entire codebase in seconds, work that might take much longer in a bulky Integrated Development Environment.
How Can Larger Companies Make Edit Work For Them?
Large organisations often lock down desktop software for security reasons. At less than 250 kB, Edit fits neatly inside an image pushed through corporate deployment tools, and its open source nature allows security teams to scan every line of code before rollout. According to Microsoft, moving around the editor is keyboard first, which pairs well with remote sessions over SSH where mouse support can lag.
Teams that maintain servers can load Edit on each machine, removing the need to install third-party editors through extra package managers. The same command works on every box, reducing training time for new staff. Finally, because Edit copies the look of MS-DOS Edit, senior engineers who learned computing in the 1990s find the layout familiar, easing adoption across age groups.
Microsoft will push Edit to Windows Insider testers in the coming months and later bake it into Windows 11. Startups, scaleups, and global companies all can begin experimenting now through GitHub and prepare their workflows for a tiny tool that keeps work firmly inside the command line.