From c2f2b23a6c8b854216e5c138a38f6faa1d7c680f Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Sun, 13 Jun 2021 18:05:40 +0200 Subject: [PATCH] Add stop shortcut for main music hydra So far, only a toggle for playing and pausing was available. Providing a shortcut for `emms-stop` makes unconditionally sure the music is stoped. Funnily(?), this also replaces an obsolete shortcut for `emms-show`. --- site-lisp/db-music.el | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/site-lisp/db-music.el b/site-lisp/db-music.el index 3932b26..7d66080 100644 --- a/site-lisp/db-music.el +++ b/site-lisp/db-music.el @@ -106,18 +106,19 @@ more details." Playing: %s(db/emms-track-status) _n_: ?n? _p_: ?p? -_RET_: ?RET? _M_: ?M? +_RET_: ?RET? _s_: ?s? _-_: lower volume _+_: ?+? _P_: ?P? + _M_: ?M? " ("n" emms-next "next") ("p" emms-previous "previous") ("RET" emms-pause "play/pause") - ("s" emms-show "show title") + ("s" emms-stop "stop playing") ("-" emms-volume-lower "lower volume") ("+" emms-volume-raise "raise volume") - ("M" emms "show playlist") + ("M" emms "Show playlist in new EMMS buffer") ("P" (db/play-auto-playlist) "Play automatically generated playlist"))