From a8b7bd766293046a6ed858cf641134b30488fddf Mon Sep 17 00:00:00 2001 From: Matt Low Date: Tue, 14 Nov 2023 02:10:37 +0000 Subject: [PATCH] Renamed `lmcli view` to `lmcli show` --- pkg/cli/cmd.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 }