diff --git a/cmd/card_create.go b/cmd/card_create.go index 629c7d7..d897e53 100644 --- a/cmd/card_create.go +++ b/cmd/card_create.go @@ -75,7 +75,7 @@ var cardCreateCmd = &cobra.Command{ }, { Name: "description", - Prompt: &survey.Multiline{Message: "Description?"}, + Prompt: &survey.Editor{Message: "Description?", FileName: "*.md"}, }, { Name: "labels", diff --git a/cmd/root.go b/cmd/root.go index 9c6b2db..3a5ed42 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -1,6 +1,5 @@ /* Copyright © 2022 Daniils Petrovs - */ package cmd @@ -14,7 +13,7 @@ import ( "github.com/spf13/viper" ) -const Version = "0.2.2" +const Version = "0.3.0" // rootCmd represents the base command when called without any subcommands var rootCmd = &cobra.Command{