ChiiEdit is a basic text editor written in C without relying on any libraries.
To install locally into ~/usr/local/bin:
./build.shThis will place ChiiEdit in ~/usr/local/bin. You can then add it to your PATH:
export PATH="${PATH}":/home/"${USER}"/usr/local/binTo install the manual autotools way:
autoreconf -iv
./configure
make
make installChiiEdit can be executed by itself to start creating a file from scratch.
To modify a file, or create a new one, simply pass it a filename:
ChiiEdit foo.txtWritten by Tom Ice.
This is under the BSD-2 License. See actual license file for more information.
