summaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2020-12-31 16:47:06 -0500
committerLeo Tenenbaum <pommicket@gmail.com>2020-12-31 16:47:06 -0500
commit4293406c06fbd5572d25d86398c2c2e279ff5118 (patch)
treeca51ed28d9bff16bebe1520d17549467188cc705 /main.c
parent3f22228a220d065af3f99ba6a538ff80517ecaa2 (diff)
core settings
Diffstat (limited to 'main.c')
-rw-r--r--main.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/main.c b/main.c
index dfd78fa..b76d69f 100644
--- a/main.c
+++ b/main.c
@@ -1,4 +1,3 @@
-// @TODO: page up, page down (buffer_page_up, buffer_page_down)
#include "base.h"
no_warn_start
#if _WIN32
@@ -14,8 +13,14 @@ no_warn_end
#include "command.h"
#include "util.c"
#include "colors.c"
+// @TODO:
+// - blinking cursor (cursor-blink-time)
+// - text size
typedef struct {
u32 colors[COLOR_COUNT];
+ u8 tab_width;
+ u8 cursor_width;
+ u8 undo_save_time;
} Settings;
#include "time.c"
#include "unicode.h"