diff options
author | Leo Tenenbaum <pommicket@gmail.com> | 2020-12-31 16:47:06 -0500 |
---|---|---|
committer | Leo Tenenbaum <pommicket@gmail.com> | 2020-12-31 16:47:06 -0500 |
commit | 4293406c06fbd5572d25d86398c2c2e279ff5118 (patch) | |
tree | ca51ed28d9bff16bebe1520d17549467188cc705 /main.c | |
parent | 3f22228a220d065af3f99ba6a538ff80517ecaa2 (diff) |
core settings
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -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" |