From 93a4ae7d232116f6ec00d66947d810a58b214ea0 Mon Sep 17 00:00:00 2001 From: Squibid Date: Mon, 12 Jan 2026 14:30:35 -0500 Subject: [PATCH] add helptext to dev subcmd --- src/subcmds/dev.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/subcmds/dev.c b/src/subcmds/dev.c index 5ee1884..83edf78 100644 --- a/src/subcmds/dev.c +++ b/src/subcmds/dev.c @@ -96,7 +96,10 @@ subcmds_dev(void *, int argc, char *argv[]) system(wpath); free(wpath); } else if (strcmp(argv[1], "help") == 0 || strcmp(argv[1], "h") == 0) { - printf("Help text\n"); + printf("Usage wom dev [OPTION]...\n"); + printf(" add\tadd a new path\n"); + printf(" edit\tedit the config file\n"); + printf(" help\tshow this help text\n"); } else { } }