diff --git a/src/cmd/next.go b/src/cmd/next.go index 5b5070a..a732b42 100644 --- a/src/cmd/next.go +++ b/src/cmd/next.go @@ -13,11 +13,11 @@ func init() { } var nextCmd = &cobra.Command{ - Use: "next", + Use: "next {amount}", Aliases: []string{"n"}, Args: cobra.MatchAll(cobra.RangeArgs(0, 1)), - Short: "Skip to next song", - Long: `Skip to next song`, + Short: "Skip to next song or skip the specified number of tracks", + Long: `Skip to next song of skip the specified number of tracks`, RunE: func(cmd *cobra.Command, args []string) error { skipAmt := 1 if len(args) >= 1 {