diff options
author | Leo Tenenbaum <pommicket@gmail.com> | 2021-01-02 18:25:03 -0500 |
---|---|---|
committer | Leo Tenenbaum <pommicket@gmail.com> | 2021-01-02 18:25:03 -0500 |
commit | 35cb8b8cfbd141d4ba2e3f1435a9550864d9e2e1 (patch) | |
tree | 192554fde4ce14df9163fdb453fe8932e94dba83 /main.c | |
parent | 6bafd0d45f63a7618d7822f31b01da7443d9c5e8 (diff) |
blinking cursor
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1,6 +1,4 @@ // @TODO: -// - select all (:select-all) -// - blinking cursor (cursor-blink-time) // - text size (text-size, :increase-text-size, :decrease-text-size) #include "base.h" no_warn_start @@ -18,6 +16,7 @@ no_warn_end #include "util.c" #include "colors.c" typedef struct { + float cursor_blink_time_on, cursor_blink_time_off; u32 colors[COLOR_COUNT]; u8 tab_width; u8 cursor_width; |