diff options
author | Leo Tenenbaum <pommicket@gmail.com> | 2021-02-19 11:13:16 -0500 |
---|---|---|
committer | Leo Tenenbaum <pommicket@gmail.com> | 2021-02-19 11:13:16 -0500 |
commit | 42572f5c445497296ae70100d5e51370c8bba410 (patch) | |
tree | 91547a16a90cd2531e7116cfea40c7989d90fbf5 /main.c | |
parent | f8f517df2becd809e36a3a315487eff26485f81a (diff) |
started tags
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -61,6 +61,7 @@ no_warn_end #include "syntax.c" #include "buffer.c" #include "ted.c" +#include "tags.c" #include "ui.c" #include "find.c" #include "node.c" @@ -389,6 +390,8 @@ int main(int argc, char **argv) { ted->scroll_total_x = ted->scroll_total_y = 0; //printf("%p\n",(void *)ted->drag_buffer); + + tags_read_if_changed(ted, &ted->tags); ted_update_window_dimensions(ted); |