aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBardofSprites <[email protected]>2024-08-08 10:36:34 -0400
committerBardofSprites <[email protected]>2024-08-08 10:36:34 -0400
commitcd3060cd6122f2f65751e277d2ce9cf1c7618603 (patch)
treef8f6b41fe936e77d58d2a4c3c7b74b14ac13f088
parent935a2e2a99652b96eae468ec0bb343e901844819 (diff)
global binding for emms-browser
-rw-r--r--bard-emacs-modules/bard-emacs-emms.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/bard-emacs-modules/bard-emacs-emms.el b/bard-emacs-modules/bard-emacs-emms.el
index 0a7d249..fef21bf 100644
--- a/bard-emacs-modules/bard-emacs-emms.el
+++ b/bard-emacs-modules/bard-emacs-emms.el
@@ -31,7 +31,6 @@
(use-package emms
:bind
(:map emms-playlist-mode-map
- ("M-<f8>" . emms-browser)
("A" . emms-add-directory)
("T" . emms-add-directory-tree)
("F" . emms-add-file)
@@ -40,7 +39,8 @@
("<mouse-3>" . emms-pause)
("<SPC>" . emms-pause)
("c" . bard/emms-recenter))
- :bind ("<f8>" . emms)
+ :bind (("<f8>" . emms)
+ ("M-<f8>" . emms-browser))
:hook
(emms-playlist-mode . hl-line-mode))