summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ampc.el5
1 files changed, 5 insertions, 0 deletions
diff --git a/ampc.el b/ampc.el
index f4ddff87c2a..4bc82678120 100644
--- a/ampc.el
+++ b/ampc.el
@@ -450,6 +450,11 @@ all the time!"
["Pause" ampc-toggle-play
:visible (and ampc-status
(equal (cdr (assq 'state ampc-status)) "play"))]
+ ["Stop" (lambda () (interactive) (ampc-toggle-play 4))
+ :visible (and ampc-status
+ (equal (cdr (assq 'state ampc-status)) "play"))]
+ ["Next" ampc-next]
+ ["Previous" ampc-previous]
"--"
["Clear playlist" ampc-clear]
["Shuffle playlist" ampc-shuffle]