diff --git a/.sconsign.dblite b/.sconsign.dblite index 0dead31..2489454 100644 Binary files a/.sconsign.dblite and b/.sconsign.dblite differ diff --git a/doc/useful links.txt b/doc/useful links.txt index e6921b1..80162dd 100644 --- a/doc/useful links.txt +++ b/doc/useful links.txt @@ -9,4 +9,10 @@ Parsing Json in C: https://github.com/zserge/jsmn Sconstruct a make alternative: - https://github.com/SCons/scons/wiki/SConsCrashCourse \ No newline at end of file + https://github.com/SCons/scons/wiki/SConsCrashCourse + +Write a simple text editor written in pure C: + https://viewsourcecode.org/snaptoken/kilo/ + +All C keywords: + https://www.programiz.com/c-programming/list-all-keywords-c-language \ No newline at end of file diff --git a/src/ste.c b/src/ste.c index 13d6098..a1bc626 100644 --- a/src/ste.c +++ b/src/ste.c @@ -228,6 +228,10 @@ void termInit (void) /* Turn off echoing */ noecho(); + /* Other standard options */ + nonl(); + intrflush(stdscr, FALSE); + /* Set the tab size */ set_tabsize(TABSIZE); diff --git a/src/ste.o b/src/ste.o index c9ef667..a37910b 100644 Binary files a/src/ste.o and b/src/ste.o differ