aboutsummaryrefslogtreecommitdiff
path: root/cmd/status.go
diff options
context:
space:
mode:
authorVidhu Kant Sharma <vidhukant@vidhukant.xyz>2022-07-04 01:15:00 +0530
committerVidhu Kant Sharma <vidhukant@vidhukant.xyz>2022-07-04 01:15:00 +0530
commit9228897f84d898a7736f1f6df9b2aac005a89514 (patch)
tree473a2f50a42f4f3f7a04274d9c7d91f553b77e98 /cmd/status.go
parent7473964721c349a7f41c6fcd48df14d570cee676 (diff)
using Flags instead of PersistentFlags (useless use)
Diffstat (limited to 'cmd/status.go')
-rw-r--r--cmd/status.go12
1 files changed, 6 insertions, 6 deletions
diff --git a/cmd/status.go b/cmd/status.go
index e828219..540d84e 100644
--- a/cmd/status.go
+++ b/cmd/status.go
@@ -124,10 +124,10 @@ func setMangaStatus(statusInput, searchInput string) {
func init() {
rootCmd.AddCommand(statusCmd)
statusCmd.Flags().StringP("set-value", "s", "", "status to be set")
- statusCmd.PersistentFlags().IntVarP(&ui.PromptLength, "prompt-length", "l", 5, "Length of select prompt")
- statusCmd.PersistentFlags().IntVarP(&mal.SearchLength, "search-length", "n", 10, "Amount of search results to load")
- statusCmd.PersistentFlags().IntVarP(&mal.SearchOffset, "search-offset", "o", 0, "Offset for the search results")
- statusCmd.PersistentFlags().BoolVarP(&mal.SearchNSFW, "search-nsfw", "", false, "Include NSFW-rated items in search results")
- statusCmd.PersistentFlags().BoolVarP(&mangaMode, "manga", "m", false, "Use manga mode")
- statusCmd.PersistentFlags().BoolVarP(&queryOnlyMode, "query", "q", false, "Query only (don't update data)")
+ statusCmd.Flags().IntVarP(&ui.PromptLength, "prompt-length", "l", 5, "Length of select prompt")
+ statusCmd.Flags().IntVarP(&mal.SearchLength, "search-length", "n", 10, "Amount of search results to load")
+ statusCmd.Flags().IntVarP(&mal.SearchOffset, "search-offset", "o", 0, "Offset for the search results")
+ statusCmd.Flags().BoolVarP(&mal.SearchNSFW, "search-nsfw", "", false, "Include NSFW-rated items in search results")
+ statusCmd.Flags().BoolVarP(&mangaMode, "manga", "m", false, "Use manga mode")
+ statusCmd.Flags().BoolVarP(&queryOnlyMode, "query", "q", false, "Query only (don't update data)")
}