Keno Goertz <[email protected]> writes:

> I have tried using emms-browser-mode-hook, but
>
> #+BEGIN_SRC emacs-lisp
>   (add-hook 'emms-browser-mode-hook 'emms-browser-expand-to-level-2)
> #+END_SRC
>
> just makes Emacs freeze up when calling emms-smart-browse.

It looks like emms-browser-find-top-level function goes into an infinite
loop.  So it is a bug in the browser code.

Until it gets fixed you can try something like this:

  (global-set-key (kbd "C-c s")
                  (lambda ()
                    "Display browser and playlist."
                    (interactive)
                    (emms-smart-browse)
                    (emms-browser-expand-to-level-2)))

Regards,
Petteri

Reply via email to