hydra icon indicating copy to clipboard operation
hydra copied to clipboard

make Emacs bindings that stick around

Results 90 hydra issues
Sort by recently updated
recently updated
newest added

I would like to know how you would feel about introducing a `hydra-state-enter-hook` and `hydra-state-exit-hook`. The first beeing called every time a hydra is "opened" the latter every time a...

I have a hydra which controls git-timemachine. Everything works well except when I happen to close the minibuffer while perusing the timemachine buffer. One way to this is by calling...

In the docstring of a hydra, it would be super great if the `%s(function)` form properly interpolated propertized text.

It would be nice to see the currently active hydra at all times unless the hints are active or the hydra exits. For now I'm just using progn to output...

Hi, I try to implement an hydra which delays the hint for as long as I keep pressing a key. This is fine for blue hydras, but for a red...

When creating a hydra for a mode with a lot of bindings, it is sometimes necessary to put two more different kinds of bindings in the same column so that...

Having the head `("ESC" nil)` will disable all M-x bindings inside the hydra :D

Hi all i found this great looking hydra in this package: and the look itself: https://github.com/Alexander-Miller/treemacs#treemacs---a-tree-layout-file-explorer-for-emacs https://github.com/Alexander-Miller/treemacs/raw/master/hydra.png the code shows some added stuff he adds (which with limited tech savyness...

I can't quite tell why this is happening, but quite often when I'm writing the bindings in a defhydra, I'll get lots of warnings like `"Warning (emacs): Unrecognized key: _q_"`....

Hi, I've defined the simplest hydra: ```emacs (defhydra hydra-zoom (global-map "") "zoom" ("g" text-scale-increase "in") ("l" text-scale-decrease "out")) ``` When I press ` 5`, I get > 5 is undefined...