diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.xyz> | 2022-07-03 22:55:45 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.xyz> | 2022-07-03 22:55:45 +0530 |
commit | d57c3ba06e1e661b650a07fd3dc66b2e20dd8daa (patch) | |
tree | efb7bb80e55872410071332575c6e0286ae8618f /cmd/chapters.go | |
parent | 7e512b17f64b85390e189754081fb9a7994cd083 (diff) |
added flags to modify prompt length and search results length
Diffstat (limited to 'cmd/chapters.go')
-rw-r--r-- | cmd/chapters.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cmd/chapters.go b/cmd/chapters.go index ae2596f..aa91a85 100644 --- a/cmd/chapters.go +++ b/cmd/chapters.go @@ -85,4 +85,8 @@ var chaptersCmd = &cobra.Command{ func init() { rootCmd.AddCommand(chaptersCmd) chaptersCmd.Flags().StringP("set-value", "s", "", "Number of chapters") + chaptersCmd.PersistentFlags().IntVarP(&ui.PromptLength, "prompt-length", "l", 5, "Length of select prompt") + chaptersCmd.PersistentFlags().IntVarP(&mal.SearchLength, "search-length", "n", 10, "Amount of search results to load") + chaptersCmd.PersistentFlags().IntVarP(&mal.SearchOffset, "search-offset", "o", 0, "Offset for the search results") + chaptersCmd.PersistentFlags().BoolVarP(&queryOnlyMode, "query", "q", false, "Query only (don't update data)") } |