Rudi Grinberg
Rudi Grinberg
I've ran into this problem. The issue is the `dolist` that ends up doing around 15k iterations per key stroke for me. @hlissner suggested a fix like this before: ```ocaml...
I put up a PR in #255 @peterhoeg and other posters who experienced a slow down, would you mind trying out my patch?
Do you really need multiple replacements? I would suggest that you disable them as they're the main source of the slow down and are much trickier to optimize.
I suppose we need to refactor this feature to make it even faster. Justin has an idea on how to do this [here](https://github.com/justbur/emacs-which-key/pull/255#issuecomment-660408911). I can take a stab at it...
> Maybe this is a factor, except I think Doom uses which-key also. I use doom and we have the same problem ;) On Aug 18, 2020, 2:18 PM -0700,...
There’s no need to make it async. Just doing a constant time instead of a linear lookup should be more than enough to make this operation instantaneous. On Aug 18,...
> fwiw I have 682 packages installed. Maybe that effects it It's more of an issue if you have lots of layers (spacemacs) or modules (doom) enabled. Every layer/module adds...
Looking good. How would one write an ivy action that would navigate to the point where the link is? Also, do you think it makes sense to add better integration...
> I'll have to add a dedicated action or way to just jump. A dedicated action would be nice. > Is there some ivy-specific feature you want? If ivy-mode is...
@rseymour do you think we should such guards as well?