What happens when you do the following:
- go to a playlist buffer
- M-x emms-playlist-set-playlist-buffer
- delete the current buffer name (which is what is there by default)
--> This explains it! When I delete the current buffer name I then see completion for my other playlists.
So for some reason when I run the function it auto completes the name of the current playlist.
At the bottom of my mail is my vertico config (I can't see anything there that might be causing the issue)
> --> good to know about `emms-toggle-single-track', but shame it doesn't
> work currently with mpv
It will be fixed soon.
--> Great! Is there a way I can get notified when this is implemented? Or notifications when there are any updates?
I would be happy to mark this as your project and leave it unimplemented
if that would be a good motivator for you. Sounds like a great first
elisp project.
--> I'll add it to my to do list! I've started work on my first package, so I'm busy on that at the moment.
First, explain what you mean by "insert text" (in the metaplaylist buffer). Do you mean annotate the
name of a playlist with additional text which only appears in the
metaplaylist buffer?
--> Yes, just like we can in the playlist buffer. I'm not sure about how useful this will be though. I'm now just going to get started using Emms and later perhaps offer suggestions (assuming you're happy with that)
Second, the order of the metaplaylist buffer is presented as an
alphanumerical sort because the order of Emms playlists changes, and it
would be annoying if every time you visited the metaplaylist buffer they
would be in a different order.
--> Ah yes, this makes total sense!
Thanks a lot!
George
(use-package vertico
:init
(vertico-mode)
:config
(add-hook 'minibuffer-setup-hook #'vertico-repeat-save)
(add-hook 'rfn-eshadow-update-overlay-hook #'vertico-directory-tidy)
:bind
("M-P" . vertico-repeat-previous)
("M-N" . vertico-repeat-next)
("M-S" . vertico-suspend)
("M-R" . vertico-repeat)
(:map minibuffer-mode-map
("C-w" . vertico-save)
("C-<up>" . previous-history-element)
("C-<down>" . next-history-element)
("<next>" . vertico-scroll-up)
("<prior>" . vertico-scroll-down)
("C-<prior>" . vertico-first)
("C-<next>" . vertico-last)
("S-<prior>" . vertico-repeat-previous)
("S-<next>" . vertico-repeat-next)
))