diff options
author | bd <bdunahu@operationnull.com> | 2024-05-30 02:58:02 -0600 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2024-05-30 02:58:02 -0600 |
commit | 465f6ce989b92b7aa4a3353be564c401b11bcae5 (patch) | |
tree | 3b33fe0e28132de77004d91f6224ad682fb62551 /.config/emacs/modules/bd--emms.el | |
parent | 247aff4d997b0b1ad106f1dee00c69a4c39bfab9 (diff) |
display-buffer-alist rules -> shackle
Diffstat (limited to '.config/emacs/modules/bd--emms.el')
-rw-r--r-- | .config/emacs/modules/bd--emms.el | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/.config/emacs/modules/bd--emms.el b/.config/emacs/modules/bd--emms.el index b240125..84182ab 100644 --- a/.config/emacs/modules/bd--emms.el +++ b/.config/emacs/modules/bd--emms.el @@ -25,6 +25,8 @@ playback." (if (get-buffer emms-playlist-buffer-name) (display-buffer emms-playlist-buffer-name) (message "The Ainur cannot hear you...")))) + ;; "emms-playlist-mode-bury-buffer" plays poorly with shackle + (keymap-set emms-playlist-mode-map "q" #'quit-window) :custom ;; make sure mpd is configured similarly (emms-player-mpd-server-name "localhost") @@ -38,12 +40,5 @@ playback." (emms-playlist-buffer-name "*Playlist*") (emms-mode-line-icon-enabled-p nil)) -(add-to-list 'display-buffer-alist - `(,emms-playlist-buffer-name - (display-buffer-in-side-window) - (side . left) - (window-width . 45) - (body-function . select-window))) - (provide 'bd--emms) |