diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.xyz> | 2022-10-02 20:46:50 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.xyz> | 2022-10-02 20:46:50 +0530 |
commit | 8fb49796e37d2bf955d8ffa521f6bcda4f36b766 (patch) | |
tree | e0728f19a33c2f8f71767472c10767548ce99e94 /cmd/volumes.go | |
parent | e0da6a5205169f34671addd533739b6242d5eff3 (diff) |
Automatically select nth search result with --auto-select flag
Diffstat (limited to 'cmd/volumes.go')
-rw-r--r-- | cmd/volumes.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cmd/volumes.go b/cmd/volumes.go index 6df1b69..f1cc108 100644 --- a/cmd/volumes.go +++ b/cmd/volumes.go @@ -49,6 +49,7 @@ var volumesCmd = &cobra.Command{ } mal.SearchLength = conf.SearchLength mal.SearchOffset = conf.SearchOffset + mal.AutoSel = conf.AutoSel mal.SearchNSFW = conf.SearchNSFW ui.PromptLength = conf.PromptLength mal.Init() @@ -104,6 +105,7 @@ func init() { volumesCmd.Flags().IntVarP(&entryId, "id", "i", -1, "Manually specify the ID of manga (overrides search)") volumesCmd.Flags().StringVarP(&mal.Secret, "authentication-token", "t", "", "MyAnimeList authentication token to use (overrides system keyring if any)") + volumesCmd.Flags().IntP("auto-select", "S", 0, "Automatically select nth value") volumesCmd.Flags().IntP("prompt-length", "l", 5, "Length of select prompt") volumesCmd.Flags().IntP("search-length", "n", 10, "Amount of search results to load") volumesCmd.Flags().IntP("search-offset", "o", 0, "Offset for the search results") |