This is a really simple text editor written in C, you can only write and save. That's it ;-;
If there is an issue please report it :)
Compiling is extremely simple, just use gcc, a command like this:
gcc main.c -o quecto
And then just run it:
./quecto file.txt
- Add line deletion
- Add line insertion
- Display current line contents when using
:f - Warn before quitting unsaved changes
- Add configurable max line count
- Improve handling long lines
- Add help command (
--help/-h)