aboutsummaryrefslogtreecommitdiff
path: root/tests/test-music-config-create-radio-station.el
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-07-21 22:25:01 -0500
committerCraig Jennings <c@cjennings.net>2026-07-21 22:25:01 -0500
commitdeedf75cead6e8860f66f5e9e5fe66b8ed92f083 (patch)
tree9f7d7c0ba3487d95d942c92e49a5266ca90630a5 /tests/test-music-config-create-radio-station.el
parenta1b5ad8ee7bc808d166ce89998aac8ae7bd67840 (diff)
downloaddotemacs-deedf75cead6e8860f66f5e9e5fe66b8ed92f083.tar.gz
dotemacs-deedf75cead6e8860f66f5e9e5fe66b8ed92f083.zip
feat(music): move single to 1, save to s, drop the stop key
In the playlist buffer, single-track mode moves off s onto 1 and save moves off v onto s. The stop key (S) is gone, since SPC/pause already covers stopping. The Mode/Keys header legend follows, and v is now unbound. Stop is still reachable from the global music prefix (C-; m s).
Diffstat (limited to 'tests/test-music-config-create-radio-station.el')
-rw-r--r--tests/test-music-config-create-radio-station.el7
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/test-music-config-create-radio-station.el b/tests/test-music-config-create-radio-station.el
index 7d9adbed..4f49f49b 100644
--- a/tests/test-music-config-create-radio-station.el
+++ b/tests/test-music-config-create-radio-station.el
@@ -106,15 +106,16 @@
(ert-deftest test-music-config-menu-map-lowercase-keys ()
"Normal: the menu's former uppercase keys live on lowercase homes, and the
-playlist buffer saves on v."
+playlist buffer saves on s (single on 1, old save key v unbound)."
(should (eq (lookup-key cj/music-map "v") 'cj/music-playlist-show))
(should (eq (lookup-key cj/music-map "u") 'emms-shuffle))
(should (eq (lookup-key cj/music-map "l") 'emms-toggle-repeat-playlist))
(should-not (lookup-key cj/music-map "R"))
(should-not (lookup-key cj/music-map "M"))
(should-not (lookup-key cj/music-map "Z"))
- (should (eq (lookup-key emms-playlist-mode-map "v") 'cj/music-playlist-save))
- (should-not (eq (lookup-key emms-playlist-mode-map "w") 'cj/music-playlist-save)))
+ (should (eq (lookup-key emms-playlist-mode-map "s") 'cj/music-playlist-save))
+ (should (eq (lookup-key emms-playlist-mode-map "1") 'emms-toggle-repeat-track))
+ (should-not (lookup-key emms-playlist-mode-map "v")))
;;; Error Cases