From 40f82daa43699f8b1f916b45ee77f6cb8b84b0ef Mon Sep 17 00:00:00 2001 From: Christopher Schmidt Date: Sat, 5 May 2012 23:52:47 +0200 Subject: * ampc.el (ampc-mode-map): Add stop/next/previous menu items. --- ampc.el | 5 +++++ 1 file changed, 5 insertions(+) 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] -- cgit v1.2.1