Simple visual text editor written in pure C.
There's nothing here, just a playground. It's not usefull because of:
- Inserting/reading unicode causes segfault;
- Writing/reading a line bigger than the window width also causes segfault;
- Tab character is literally unsupported;
- The file name should not be bigger than 128 bytes.
$ make
$ ./ved akatsuki.txt
- Move left:
Ctrl + BorLeft. - Move right:
Ctrl + ForRight. - Move up:
Ctrl + PorUp. - Move down:
Ctrl + NorDown. - Move to end of line:
Ctrl + EorEnd. - Move to beggining of line:
Ctrl + AorHome. - Delete character under cursor:
Ctrl + DorDel. - Exit:
Ctrl + x.