Basic text editor in command prompt?

The Solution to Basic text editor in command prompt? is


I made a simple VIM clone from batch to satisfy your needs.

@echo off
title WinVim
color a
cls
echo WinVim 1.02
echo.
echo To save press CTRL+Z then press enter
echo.
echo Make sure to include extension in file name
set /p name=File Name:
copy con %name%
if exist %name% copy %name% + con

Hope this helps :)

~ Answered on 2014-08-02 18:07:07


Most Viewed Questions: