branch: master commit 272dc4ad3bf12f92105775f547dfc982bae25162 Author: Oleh Krehel <ohwoeo...@gmail.com> Commit: Oleh Krehel <ohwoeo...@gmail.com>
hydra.el (hydra-docstring-keys-translate-alist): Update Fixes #186 --- hydra.el | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/hydra.el b/hydra.el index a1f7a8d..380ffd3 100644 --- a/hydra.el +++ b/hydra.el @@ -582,7 +582,13 @@ HEAD's binding is returned as a string wrapped with [] or {}." str)) (defvar hydra-docstring-keys-translate-alist - '(("↑" . "<up>"))) + '(("↑" . "<up>") + ("↓" . "<down>") + ("→" . "<right>") + ("←" . "<left>") + ("⌫" . "DEL") + ("⌦" . "<deletechar>") + ("⏎" . "RET"))) (defconst hydra-width-spec-regex " ?-?[0-9]*s?" "Regex for the width spec in keys and %` quoted sexps.")