diff --git a/src/subcommands/help.nim b/src/subcommands/help.nim index 2b2f9c6..7545126 100644 --- a/src/subcommands/help.nim +++ b/src/subcommands/help.nim @@ -12,13 +12,13 @@ type ] var commands: seq[Command] = @[ - ("help", "Displays this help message"), - ("init", "Initialise a project directory with default settings"), - ("template", "Initialise a project directory with default settings"), + ("help", "Displays this help message."), + ("init", "Initialise a project directory with default settings."), + ("config", "Configure dashinit settings and preferences."), ] var options: seq[Option] = @[ - ("-h", "Displays this help message") + ("-h", "Displays this help message.") ] proc displayHelp*() = @@ -36,6 +36,6 @@ proc displayHelp*() = styledEcho " ", styleBright, option.arg, resetStyle, " \t", option.desc echo "\nExamples:" - echo " dashinit\t\t\tInitialises using default settings." - styledEcho " ", "dashinit ", "template get ", fgBlue, "", resetStyle, "\tGets a template from the internet" + echo " ", "dashinit", "\t\t\t", "Initialises using default settings." + echo " ", "dashinit template -h", "\t\t", "Shows the help menu for the template subcommand." # styledEcho styleBright, fgGreen, "[PASS]", resetStyle, fgGreen, " Yay!" \ No newline at end of file