From 0cb45cd6e885bcf1ee2e74f7e3666f2f098117b3 Mon Sep 17 00:00:00 2001 From: Shantanu Date: Sun, 4 Aug 2024 19:28:31 -0700 Subject: [PATCH] cmd/ask: remove short hand flag for --history --- cmd/ask.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/ask.go b/cmd/ask.go index abc9ab1..6a22ba0 100644 --- a/cmd/ask.go +++ b/cmd/ask.go @@ -356,5 +356,5 @@ var useHistory bool func init() { rootCmd.AddCommand(askCmd) askCmd.Flags().StringVarP(&filePath, "file", "f", "", "File path for ask to read and use while generating an answer") - askCmd.Flags().BoolVarP(&useHistory, "history", "h", false, "Provide historical context to Savvy's AI model") + askCmd.Flags().BoolVarP(&useHistory, "history", "", false, "Provide historical context to Savvy's AI model") }