From 8fb49796e37d2bf955d8ffa521f6bcda4f36b766 Mon Sep 17 00:00:00 2001 From: Vidhu Kant Sharma Date: Sun, 2 Oct 2022 20:46:50 +0530 Subject: Automatically select nth search result with --auto-select flag --- cmd/episodes.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'cmd/episodes.go') diff --git a/cmd/episodes.go b/cmd/episodes.go index fce4b2a..a2dbd4d 100644 --- a/cmd/episodes.go +++ b/cmd/episodes.go @@ -50,6 +50,7 @@ var episodesCmd = &cobra.Command{ mal.SearchLength = conf.SearchLength mal.SearchOffset = conf.SearchOffset mal.SearchNSFW = conf.SearchNSFW + mal.AutoSel = conf.AutoSel ui.PromptLength = conf.PromptLength mal.Init() @@ -104,6 +105,7 @@ func init() { episodesCmd.Flags().IntVarP(&entryId, "id", "i", -1, "Manually specify the ID of anime/manga (overrides search)") episodesCmd.Flags().StringVarP(&mal.Secret, "authentication-token", "t", "", "MyAnimeList authentication token to use (overrides system keyring if any)") + episodesCmd.Flags().IntP("auto-select", "S", 0, "Automatically select nth value") episodesCmd.Flags().IntP("prompt-length", "l", 5, "Length of select prompt") episodesCmd.Flags().IntP("search-length", "n", 10, "Amount of search results to load") episodesCmd.Flags().IntP("search-offset", "o", 0, "Offset for the search results") -- cgit v1.2.3