Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
kilo
#build directory
build
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
all: kilo

kilo: kilo.c
$(CC) -o kilo kilo.c -Wall -W -pedantic -std=c99
mkdir build
$(CC) -o ./build/kilo kilo.c -Wall -W -pedantic -std=c99

clean:
rm kilo
rm -rf build
15 changes: 7 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
Kilo
===
# Kilo-plus

Kilo is a small text editor in less than 1K lines of code (counted with cloc).
A folk of killo text editor for Syntax highlighting and...

A screencast is available here: https://asciinema.org/a/90r2i9bq8po03nazhqtsifksb

Usage: kilo `<filename>`

Keys:
### Usage
```
kilo `<filename>`
```
### Keys:

CTRL-S: Save
CTRL-Q: Quit
Expand Down
10 changes: 0 additions & 10 deletions TODO

This file was deleted.

Loading