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/search.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'cmd/search.go') diff --git a/cmd/search.go b/cmd/search.go index 0961ffe..8413804 100644 --- a/cmd/search.go +++ b/cmd/search.go @@ -49,6 +49,7 @@ var searchCmd = &cobra.Command { mal.SearchLength = conf.SearchLength mal.SearchOffset = conf.SearchOffset mal.SearchNSFW = conf.SearchNSFW + mal.AutoSel = conf.AutoSel ui.PromptLength = conf.PromptLength mal.Init() @@ -129,6 +130,7 @@ func init() { searchCmd.Flags().BoolVarP(&queryOnlyMode, "query", "q", false, "Query only (don't update data)") searchCmd.Flags().StringVarP(&mal.Secret, "authentication-token", "t", "", "MyAnimeList authentication token to use (overrides system keyring if any)") + searchCmd.Flags().IntP("auto-select", "S", 0, "Automatically select nth value") searchCmd.Flags().IntP("prompt-length", "l", 5, "Length of select prompt") searchCmd.Flags().IntP("search-length", "n", 10, "Amount of search results to load") searchCmd.Flags().IntP("search-offset", "o", 0, "Offset for the search results") -- cgit v1.2.3