Skip to content

Latest commit

 

History

History
41 lines (29 loc) · 826 Bytes

README.md

File metadata and controls

41 lines (29 loc) · 826 Bytes

ChiiEdit

ChiiEdit is a basic text editor written in C without relying on any libraries.

demo

Installation

To install locally into ~/usr/local/bin:

./build.sh

This will place ChiiEdit in ~/usr/local/bin. You can then add it to your PATH:

export PATH="${PATH}":/home/"${USER}"/usr/local/bin

To install the manual autotools way:

autoreconf -iv
./configure
make
make install

Usage

ChiiEdit 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.txt

Author

Written by Tom Ice.

License

This is under the BSD-2 License. See actual license file for more information.