summaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'main.c')
-rw-r--r--main.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/main.c b/main.c
index de72bbd..5c085fc 100644
--- a/main.c
+++ b/main.c
@@ -104,6 +104,12 @@ int main(void) {
case SDLK_PAGEDOWN:
buffer_scroll(&text_buffer, 0, +buffer_display_rows(&text_buffer));
break;
+ case SDLK_RIGHT:
+ buffer_cursor_move_right(&text_buffer);
+ break;
+ case SDLK_LEFT:
+ buffer_cursor_move_left(&text_buffer);
+ break;
}
} break;
}