Archived
1
Fork 0
A tiny text editor.
This repository has been archived on 2024-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
Find a file
Hadeed Ahmad 33f9102767 Delete the progress log
That information belongs in the commit messages. I'll take care in the
future, for now it's lost (not really, you can still read it).
2023-09-11 13:56:35 +05:00
include Move cursor to prompt 2023-09-11 13:53:28 +05:00
src Move cursor to prompt 2023-09-11 13:53:28 +05:00
.gitignore Refactor a lot 2023-09-08 21:55:36 +05:00
Makefile Use commit hash as version number 2023-09-06 16:43:40 +05:00
README.md Finish refactoring 2023-09-09 01:38:26 +05:00

kilo

My implementation of the kilo text editor, which I wrote by following this tutorial.

How to build

As simple as it can be, there are no external dependencies.

You can either use the provided Makefile:

make kilo

Or if you don't have make, just compile and link all the source files together, specifying the include directory:

gcc -I include src/*.c -o kilo

My additions

  • Split it up into multiple files and tried to follow good design and organization practices.

References