diff options
Diffstat (limited to 'cmd/list.go')
-rw-r--r-- | cmd/list.go | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/cmd/list.go b/cmd/list.go index 2b9cc57..6cb95fb 100644 --- a/cmd/list.go +++ b/cmd/list.go @@ -80,7 +80,10 @@ func init() { listCmd.Flags().StringP("status", "", "", "Status (leave blank for all)") listCmd.Flags().StringP("user", "", "@me", "User (@me or blank for self)") listCmd.Flags().StringP("sort", "", "list_score", "Sort the list") - listCmd.Flags().BoolP("include-nsfw", "", false, "Include NSFW results") + listCmd.Flags().BoolP("include-nsfw", "", listIncludeNsfw, "Include NSFW results") listCmd.Flags().BoolVarP(&mangaMode, "manga", "m", false, "Use manga mode") listCmd.Flags().StringVarP(&mal.Secret, "authentication-token", "t", "", "MyAnimeList authentication token to use (overrides system keyring if any)") + // TODO: implement below 2 flags + // listCmd.Flags().IntVarP(&mal.SearchLength, "list-length", "n", listLength, "Amount of list items to load (default: all)") + // listCmd.Flags().IntVarP(&mal.SearchOffset, "list-offset", "o", listOffset, "Offset for the list") } |