Archived
1
Fork 0
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.
kilo/README.md

31 lines
678 B
Markdown
Raw Normal View History

2023-08-22 14:05:51 +00:00
# kilo
2023-09-05 20:33:54 +00:00
My implementation of the [kilo text editor][1], which I wrote by following
[this tutorial][2].
## How to build
As simple as it can be, there are no external dependencies.
You can either use the provided Makefile:
``` sh
make kilo
```
Or if you don't have make, just compile and link all the source files together,
specifying the include directory:
``` sh
gcc -I include src/*.c -o kilo
```
2023-08-27 01:48:25 +00:00
2023-09-04 16:07:47 +00:00
## My additions
- Split it up into multiple files and tried to follow good design and
2023-09-08 20:32:29 +00:00
organization practices.
2023-09-04 16:07:47 +00:00
2023-09-05 20:33:54 +00:00
## References
2023-08-27 01:48:25 +00:00
- [antirez/kilo][1]
- [Build Your Own Text Editor][2]
[1]: https://github.com/antirez/kilo
[2]: https://viewsourcecode.org/snaptoken/kilo/index.html