From 824b4b94bd1dfbe12df6fefebe83342b33c27721 Mon Sep 17 00:00:00 2001 From: icedream Date: Tue, 27 Oct 2015 22:59:17 +0100 Subject: [PATCH] Implement "prev"/"previous" commands. These commands allow going to the previous entry in the playlist. --- app.iced | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app.iced b/app.iced index 95c94f1..4d94018 100644 --- a/app.iced +++ b/app.iced @@ -207,6 +207,8 @@ ts3clientService.on "started", (ts3proc) => vlc.play info.url when "next" vlc.playlist.next() + when "prev", "previous" + vlc.playlist.prev() when "enqueue", "add", "append" inputBB = paramline.trim() input = (removeBB paramline).trim()