Skip to content

Latest commit

 

History

History
49 lines (34 loc) · 534 Bytes

README.md

File metadata and controls

49 lines (34 loc) · 534 Bytes

Dictee

A simple minimalist text editor written in C heavily inspired by kilo

Build

make update-submodules
make

Usage

./dictee
# or with a filename
./dictee test.txt

Debug

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

TODO

  • select mechanism
  • copy
  • handle multiple buffers/files
  • undo/redo

Sources

https://viewsourcecode.org/snaptoken/kilo/05.aTextEditor.html