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
+2
View File
@@ -9,6 +9,7 @@
#define ERASE_END_LINE "\x1b[K"
enum editorKey {
BACKSPACE = 127,
CURSOR_LEFT = 1000,
CURSOR_RIGHT,
CURSOR_UP,
@@ -23,5 +24,6 @@ enum editorKey {
#define ABUF_INIT {NULL, 0}
#define BELUGA_VERSION "0.1"
#define TAB_LENGTH 8
#endif // DEFINE_H_