summaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2023-01-05 11:52:57 -0500
committerpommicket <pommicket@gmail.com>2023-01-05 11:54:50 -0500
commitbe318b18a01481d16149c34f649c9cdb1f91979d (patch)
tree9a224f909a78170a67e7e42060d1069aebaed9e8 /main.c
parentf897a6a62e9572f1f3cc6c7905192d49d7868c9a (diff)
clean up some TODOs
Diffstat (limited to 'main.c')
-rw-r--r--main.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/main.c b/main.c
index e99f12f..0a9e379 100644
--- a/main.c
+++ b/main.c
@@ -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) {