diff options
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) { |