diff --git a/pkg/cmd/list.go b/pkg/cmd/list.go index ef15b84..317deac 100644 --- a/pkg/cmd/list.go +++ b/pkg/cmd/list.go @@ -115,8 +115,8 @@ func ListCmd(ctx *lmcli.Context) *cobra.Command { }, } - cmd.Flags().Bool("all", false, "Show all conversations") - cmd.Flags().Int("count", LS_COUNT, "How many conversations to show") + cmd.Flags().BoolP("all", "a", false, "Show all conversations") + cmd.Flags().IntP("count", "c", LS_COUNT, "How many conversations to show") return cmd }