diff options
author | pommicket <pommicket@gmail.com> | 2023-01-05 11:52:57 -0500 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2023-01-05 11:54:50 -0500 |
commit | be318b18a01481d16149c34f649c9cdb1f91979d (patch) | |
tree | 9a224f909a78170a67e7e42060d1069aebaed9e8 /main.c | |
parent | f897a6a62e9572f1f3cc6c7905192d49d7868c9a (diff) |
clean up some TODOs
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -28,6 +28,7 @@ FUTURE FEATURES: - write first to <path>.tmp then rename to <path>. this prevents freak occurences, e.g. power outage during file write, from losing (all) data. +- manual.md - better handling of backspace with space indentation - CSS highlighting - styles ([color] sections) @@ -318,6 +319,9 @@ int main(int argc, char **argv) { setlocale(LC_ALL, "C.UTF-8"); #endif + command_init(); + color_init(); + // read command-line arguments const char *starting_filename = NULL; switch (argc) { |