This project aims to build a proof-of-concept command line text editor.
- Sagnik Chatterjee (@chatsagnik)
- Jayant Bhawal (@jayantbh)
- Soumyarup Paul (@soumyarup-paul)
- Subham Singh (@ssubham-singh)
Build using cmake . && make.
Run ./backend.out for testing the backend.
Run ./slate.out to test the editor.
Quick run:
cmake . && make && ./slate.out file.txt
- CMake 2.5.1 or above (optional)
- Make (optional)
- GCC
- NCurses library
- Panel library
- Supports insert, delete, cursor movement, per-line scrolling, undo, find, replace, and persistence.
- Left to do: selection,
copy(), andpaste().