From a758f7a199e4949bd85498cd6288f0efca5736f5 Mon Sep 17 00:00:00 2001 From: abs3nt Date: Mon, 16 Jan 2023 21:08:30 -0800 Subject: [PATCH] fancy next --- src/cmd/next.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 {