D.K.
D.K.
> > I often find myself wanting to restrict the list of buffer candidates by the project name, or major-mode. Is there another way to accomplish this? > > FWIW,...
> All I am claiming is that it won't be fast, as long as you don't add some kind of caching/indexing. well, ivy supports dynamic collections, so I don't think...
> You could also try delete-dups which is O(n) and which is a builtin. I'm aware about `delete-dups` and know that `consult` uses it, the problem with that is doesn't...
What Emacs version are you using? It worked well on 26.3 for me
it looks like it was broken in #850
> * We could call `customize-set-variable` for any variable name ending with `-mode` (reverting to the old behavior) > * We could call `custom-load-symbol` for any variable name ending with...
@conao3 The thing is minor modes are defcustoms, so `:custom` should work for them
@tzz How about adding a function which mimics `customize-set-variable`, but doesn't save customizations into `custom-file`?
> But, in principle, there can be minor modes that are not defined in define-minor-mode, can't there? They can exist but I don't think it's a good idea
> I am thinking about adding an :init-custom keyword to use-package so it can be uses just like :custom keyword. why are you trying to invent new keywords instead of...