summaryrefslogtreecommitdiffstats
path: root/commands/new_theme.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/new_theme.go')
-rw-r--r--commands/new_theme.go10
1 files changed, 3 insertions, 7 deletions
diff --git a/commands/new_theme.go b/commands/new_theme.go
index 4ff239f22..64220a8fc 100644
--- a/commands/new_theme.go
+++ b/commands/new_theme.go
@@ -31,15 +31,11 @@ import (
var _ cmder = (*newThemeCmd)(nil)
type newThemeCmd struct {
- cmd *cobra.Command
-}
-
-func (c *newThemeCmd) getCommand() *cobra.Command {
- return c.cmd
+ *baseCmd
}
func newNewThemeCmd() *newThemeCmd {
- ccmd := &newThemeCmd{}
+ ccmd := &newThemeCmd{newBaseCmd(nil)}
cmd := &cobra.Command{
Use: "theme [name]",
@@ -57,7 +53,7 @@ as you see fit.`,
}
func (n *newThemeCmd) newTheme(cmd *cobra.Command, args []string) error {
- c, err := InitializeConfig(false, nil)
+ c, err := initializeConfig(false, nil, n, nil)
if err != nil {
return err