Re: [emms-help] Why are maps declared with defconst?

2017-12-29 Thread Pierre Neidhardt
> Personally, I can take it or leave it since it is obviously a kludge to > move the docstring closer to where it makes sense. Agreed :) -- Pierre Neidhardt signature.asc Description: PGP signature ___ Emms-help mailing list Emms-help@gnu.org

Re: [emms-help] Why are maps declared with defconst?

2017-12-29 Thread Yoni Rabkin
Pierre Neidhardt writes: > Do you mean the following? > > (defvar my-mode-map nil >DOCSTRING) > (unless my-mode-map >(let ((map (make-sparse-keymap))) > (define-key map "\C-c\C-a" 'my-command) > ... > (setq my-mode-map

Re: [emms-help] Why are maps declared with defconst?

2017-12-29 Thread Pierre Neidhardt
Do you mean the following? (defvar my-mode-map nil DOCSTRING) (unless my-mode-map (let ((map (make-sparse-keymap))) (define-key map "\C-c\C-a" 'my-command) ... (setq my-mode-map map))) signature.asc Description: PGP signature

Re: [emms-help] How to remove tracks from cache?

2017-12-29 Thread Yoni Rabkin
Pierre Neidhardt writes: > It sounds stupid but I can't find command to do this easily. > `emms-cache-del` but it's not interactive. > > Is this an oversight? I'm note sure if it is an oversight, but if you need it go ahead and add it. -- "Cut your own wood and it will

Re: [emms-help] Album artist grouping in emms-browser

2017-12-29 Thread Yoni Rabkin
Pierre Neidhardt writes: >> After that open the playlist, and you can see how track metadata are >> extracted one-by-one with speed of something like 10 tracks per >> second. > > Wow, it's more like 2 tracks per second here on my machine :( > Am I doing something wrong? > >>

Re: [emms-help] metaplaylist mode update

2017-12-29 Thread Yoni Rabkin
Pierre Neidhardt writes: > Nice! Thanks for the good work. > > One question though: when pressing SPC on an '*EMMS'-prefixed playlist, > the point goes back to the beginning of the buffer. Is this a bug? Yup, that's a bug. Fixed; thanks. -- "Cut your own wood and it

Re: [emms-help] Why are maps declared with defconst?

2017-12-29 Thread Yoni Rabkin
Pierre Neidhardt writes: > I wonder why maps are declared with defconst. > > It seems to create issues with Evil, such as defining bindings with a > prefix. > I'm not completely sure why as I haven't dug into Evil internals. > > Can we change the definition of the maps to