Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tomice/chiiedit
A basic text editor written in C without relying on a library such as ncurses
https://github.com/tomice/chiiedit
Last synced: about 2 months ago
JSON representation
A basic text editor written in C without relying on a library such as ncurses
- Host: GitHub
- URL: https://github.com/tomice/chiiedit
- Owner: tomice
- License: bsd-2-clause
- Created: 2018-04-04T22:41:28.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-06-20T03:31:28.000Z (over 6 years ago)
- Last Synced: 2024-10-15T12:18:20.436Z (3 months ago)
- Language: C
- Homepage:
- Size: 25.4 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: ChangeLog
- License: COPYING
- Authors: AUTHORS
Awesome Lists containing this project
README
# ChiiEdit
ChiiEdit is a basic text editor written in C without relying on any libraries.![demo](https://user-images.githubusercontent.com/8818630/41635712-3f6ba3c2-7418-11e8-991e-061f13b14764.gif)
## Installation
To install locally into ~/usr/local/bin:```bash
./build.sh
```This will place ChiiEdit in ~/usr/local/bin. You can then add it to your PATH:
```bash
export PATH="${PATH}":/home/"${USER}"/usr/local/bin
```To install the manual autotools way:
```bash
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:
```bash
ChiiEdit foo.txt
```## Author
Written by Tom Ice.## License
This is under the BSD-2 License. See actual license file for more information.