branch: master
commit ddd96d1680dc3dc77d0f38ea63c586374c62863e
Author: Oleh Krehel <[email protected]>
Commit: Oleh Krehel <[email protected]>
hydra-examples.el: add a `windmove' Hydra
* hydra-examples.el (hydra-example-windmove): New variable.
---
hydra-examples.el | 7 +++++++
1 files changed, 7 insertions(+), 0 deletions(-)
diff --git a/hydra-examples.el b/hydra-examples.el
index c07bd8e..c1b02df 100644
--- a/hydra-examples.el
+++ b/hydra-examples.el
@@ -81,5 +81,12 @@ Works best if you have not more than 4 windows.")
"A three-headed hydra for jumping between \"errors\".
Useful for e.g. `occur', `rgrep' and the like.")
+(defvar hydra-example-windmove
+ '(("h" windmove-left)
+ ("j" windmove-down)
+ ("k" windmove-up)
+ ("l" windmove-right))
+ "A four-headed hydra for `windmove'.")
+
(provide 'hydra-examples)
;;; hydra-examples.el ends here