A simple minimalist text editor written in C heavily inspired by kilo
make update-submodules
make
./dictee
# or with a filename
./dictee test.txt
with gdb
gdb --args dictee test.txt
b 165
run
print somevariable
c continue
s step
redirect stderr to error.log
./dictee 2> error.log
- select mechanism
- copy
- handle multiple buffers/files
- undo/redo
https://viewsourcecode.org/snaptoken/kilo/05.aTextEditor.html