From a18c157112d819039a3cc8ce377d087d21ab3f5f Mon Sep 17 00:00:00 2001 From: Jonathan Bernard Date: Wed, 16 Mar 2016 04:01:35 -0500 Subject: [PATCH] Added short names for next and prev ('n' and 'p' respectively). --- .../com/jdbernard/wdiwtlt/cli/CommandLineInterface.groovy | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cli/src/main/groovy/com/jdbernard/wdiwtlt/cli/CommandLineInterface.groovy b/cli/src/main/groovy/com/jdbernard/wdiwtlt/cli/CommandLineInterface.groovy index 23d781d..f98ed43 100644 --- a/cli/src/main/groovy/com/jdbernard/wdiwtlt/cli/CommandLineInterface.groovy +++ b/cli/src/main/groovy/com/jdbernard/wdiwtlt/cli/CommandLineInterface.groovy @@ -330,7 +330,9 @@ Configuration: case 'clear': return processClear(rest) case 'pause': return processPause() case 'stop': return processStop() + case 'n': case 'next': return processNext(rest) + case 'p': case 'prev': return processPrev(rest) case 'jump': return processJump(rest) case 'ff':