Restructure the gen commands
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Mon, 23 Nov 2015 15:51:12 +0000 (16:51 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Mon, 23 Nov 2015 15:51:12 +0000 (16:51 +0100)
Fixes #1603

commands/gen.go [new file with mode: 0644]
commands/genautocomplete.go
commands/gendoc.go
commands/genman.go
commands/hugo.go

diff --git a/commands/gen.go b/commands/gen.go
new file mode 100644 (file)
index 0000000..86bc491
--- /dev/null
@@ -0,0 +1,10 @@
+package commands
+
+import (
+       "github.com/spf13/cobra"
+)
+
+var genCmd = &cobra.Command{
+       Use:   "gen",
+       Short: "A collection of several useful generators.",
+}
index b37762e9ccdc0106c7905160e45447df6f4def68..2a2fcdd91206809a470aebeb097a5e4b2ffcb510 100644 (file)
@@ -11,7 +11,7 @@ var autocompleteTarget string
 var autocompleteType string
 
 var genautocompleteCmd = &cobra.Command{
-       Use:   "genautocomplete",
+       Use:   "autocomplete",
        Short: "Generate shell autocompletion script for Hugo",
        Long: `Generates a shell autocompletion script for Hugo.
 
index fa0a7b9be67b1a3d7397d6d6d92ef2bd3836ea33..ed7f073ac98879ab21b39a6e55837096576f50b5 100644 (file)
@@ -22,7 +22,7 @@ url: %s
 
 var gendocdir string
 var gendocCmd = &cobra.Command{
-       Use:   "gendoc",
+       Use:   "doc",
        Short: "Generate Markdown documentation for the Hugo CLI.",
        Long: `Generate Markdown documentation for the Hugo CLI.
 
index 1c8ec45a056a8cf8a70711972bd0a6b6cf6f5e13..1992628f0dbe1ec7d0509eee6672f65e6a153abd 100644 (file)
@@ -9,7 +9,7 @@ import (
 )
 
 var genmanCmd = &cobra.Command{
-       Use:   "genman",
+       Use:   "man",
        Short: "Generate man pages for the Hugo CLI",
        Long: `This command automatically generates up-to-date man pages of Hugo's
 command-line interface.  By default, it creates the man page files
index 28a6d43b81f46ac412612e54ec568d73692e4cc5..3420fc526ce428f0217266db9e1dd2020e3c56e4 100644 (file)
@@ -86,10 +86,13 @@ func AddCommands() {
        HugoCmd.AddCommand(newCmd)
        HugoCmd.AddCommand(listCmd)
        HugoCmd.AddCommand(undraftCmd)
-       HugoCmd.AddCommand(genautocompleteCmd)
-       HugoCmd.AddCommand(gendocCmd)
-       HugoCmd.AddCommand(genmanCmd)
        HugoCmd.AddCommand(importCmd)
+
+       HugoCmd.AddCommand(genCmd)
+       genCmd.AddCommand(genautocompleteCmd)
+       genCmd.AddCommand(gendocCmd)
+       genCmd.AddCommand(genmanCmd)
+
 }
 
 //Initializes flags