Status bar / editing / saving file

This commit is contained in:
Arthur Barraux
2024-10-08 14:57:59 +02:00
parent 297eef4ce2
commit 1c22c3beca
15 changed files with 334 additions and 27 deletions
+6
View File
@@ -3,10 +3,16 @@
void initEditor(struct editorConfig *E) {
E->cursor_x = 0;
E->cursor_y = 0;
E->rx = 0;
E->row_offset = 0;
E->col_offset = 0;
E->numrows = 0;
E->row = NULL;
E->filename = NULL;
E->status_msg[0] = '\0';
E->status_msg_time = 0;
if (getWindowSize(&E->screenrows, &E->screencols) == -1) {
die("getWindowSize");
}
E->screenrows -= 2;
}