Skip to content

Commit

Permalink
Minor improvements + version update.
Browse files Browse the repository at this point in the history
  • Loading branch information
GrenderG committed Oct 18, 2019
1 parent 8c12e2b commit d660e1c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tte.c
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
#include <string.h>
#include <sys/ioctl.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <termios.h>
#include <time.h>
#include <unistd.h>
Expand All @@ -49,7 +50,7 @@
// Empty buffer
#define ABUF_INIT {NULL, 0}
// Version code
#define TTE_VERSION "0.0.6"
#define TTE_VERSION "0.0.7"
// Length of a tab stop
#define TTE_TAB_STOP 4
// Times to press Ctrl-Q before exiting
Expand Down Expand Up @@ -1598,6 +1599,7 @@ void editorProcessKeypress() {
case CTRL_KEY('p'):
consoleBufferClose();
kill(0, SIGTSTP);
break;
case ARROW_UP:
case ARROW_DOWN:
case ARROW_LEFT:
Expand Down

0 comments on commit d660e1c

Please sign in to comment.