diff --git a/pkg/cli/cmd.go b/pkg/cli/cmd.go index 7bd8504..25285e8 100644 --- a/pkg/cli/cmd.go +++ b/pkg/cli/cmd.go @@ -159,9 +159,9 @@ var rmCmd = &cobra.Command{ }, } -var viewCmd = &cobra.Command{ - Use: "view [conversation]", - Short: "View messages in a conversation", +var showCmd = &cobra.Command{ + Use: "show [conversation]", + Short: "Show messages in a conversation", Long: `Finds a conversation by its short name and displays its contents.`, Args: func(cmd *cobra.Command, args []string) error { argCount := 1 @@ -395,7 +395,7 @@ func NewRootCmd() *cobra.Command { promptCmd, replyCmd, rmCmd, - viewCmd, + showCmd, ) return rootCmd }