Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix a ton of bugs (2 still left as an exercise) #78

Open
wants to merge 17 commits into
base: master
Choose a base branch
from
Open
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
7 changes: 7 additions & 0 deletions BUGS
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
- long lines with tabs in them aren't correctly rendered when editing the part
outside of the boundaries of the editor windows (i.e. when scrolled to the right.)
a patch of dirkf exists, however it's way too intrusive, and actually doesn't even
work correctly.
- if cursor is moved outside the visible bounds of a long line, the new code
to optimize screen redraw doesn't properly detect that the screen needs redraw

4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
-include config.mak

all: kilo

kilo: kilo.c
$(CC) -o kilo kilo.c -Wall -W -pedantic -std=c99
$(CC) $(CFLAGS) $(LDFLAGS) -o kilo kilo.c -Wall -W -pedantic -std=c99

clean:
rm kilo
Loading