Kilo is a minimal text editor for linux written in C with no dependencies or external libraries.
Based on the original kilo and the tutorial Build Your Own Text Editor.
- Text editing
- Find
# for editing an existed file
./kilo <filename>
# or with no argument to start editing a new file
./kilo
Keys
CTRL-S: Save
CTRL-Q: Quit
CTRL-F: Find string in file (ESC to exit search, arrows to navigate)
Kilo requires gcc to build.
make
MIT License