]> code.delx.au - gnu-emacs-elpa/blob - hydra.el
Use `unwind-protect' for :after-exit
[gnu-emacs-elpa] / hydra.el
1 ;;; hydra.el --- Make bindings that stick around. -*- lexical-binding: t -*-
2
3 ;; Copyright (C) 2015 Free Software Foundation, Inc.
4
5 ;; Author: Oleh Krehel <ohwoeowho@gmail.com>
6 ;; Maintainer: Oleh Krehel <ohwoeowho@gmail.com>
7 ;; URL: https://github.com/abo-abo/hydra
8 ;; Version: 0.12.1
9 ;; Keywords: bindings
10 ;; Package-Requires: ((cl-lib "0.5"))
11
12 ;; This file is part of GNU Emacs.
13
14 ;; GNU Emacs is free software: you can redistribute it and/or modify
15 ;; it under the terms of the GNU General Public License as published by
16 ;; the Free Software Foundation, either version 3 of the License, or
17 ;; (at your option) any later version.
18
19 ;; GNU Emacs is distributed in the hope that it will be useful,
20 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 ;; GNU General Public License for more details.
23
24 ;; You should have received a copy of the GNU General Public License
25 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26
27 ;;; Commentary:
28 ;;
29 ;; This package can be used to tie related commands into a family of
30 ;; short bindings with a common prefix - a Hydra.
31 ;;
32 ;; Once you summon the Hydra (through the prefixed binding), all the
33 ;; heads can be called in succession with only a short extension.
34 ;; The Hydra is vanquished once Hercules, any binding that isn't the
35 ;; Hydra's head, arrives. Note that Hercules, besides vanquishing the
36 ;; Hydra, will still serve his orignal purpose, calling his proper
37 ;; command. This makes the Hydra very seamless, it's like a minor
38 ;; mode that disables itself automagically.
39 ;;
40 ;; Here's an example Hydra, bound in the global map (you can use any
41 ;; keymap in place of `global-map'):
42 ;;
43 ;; (defhydra hydra-zoom (global-map "<f2>")
44 ;; "zoom"
45 ;; ("g" text-scale-increase "in")
46 ;; ("l" text-scale-decrease "out"))
47 ;;
48 ;; It allows to start a command chain either like this:
49 ;; "<f2> gg4ll5g", or "<f2> lgllg".
50 ;;
51 ;; Here's another approach, when you just want a "callable keymap":
52 ;;
53 ;; (defhydra hydra-toggle (:color blue)
54 ;; "toggle"
55 ;; ("a" abbrev-mode "abbrev")
56 ;; ("d" toggle-debug-on-error "debug")
57 ;; ("f" auto-fill-mode "fill")
58 ;; ("t" toggle-truncate-lines "truncate")
59 ;; ("w" whitespace-mode "whitespace")
60 ;; ("q" nil "cancel"))
61 ;;
62 ;; This binds nothing so far, but if you follow up with:
63 ;;
64 ;; (global-set-key (kbd "C-c C-v") 'hydra-toggle/body)
65 ;;
66 ;; you will have bound "C-c C-v a", "C-c C-v d" etc.
67 ;;
68 ;; Knowing that `defhydra' defines e.g. `hydra-toggle/body' command,
69 ;; you can nest Hydras if you wish, with `hydra-toggle/body' possibly
70 ;; becoming a blue head of another Hydra.
71 ;;
72 ;; Initially, Hydra shipped with a simplified `hydra-create' macro, to
73 ;; which you could hook up the examples from hydra-examples.el. It's
74 ;; better to take the examples simply as templates and use `defhydra'
75 ;; instead of `hydra-create', since it's more flexible.
76
77 ;;; Code:
78 ;;* Requires
79 (require 'cl-lib)
80 (require 'lv)
81
82 (defvar hydra-curr-map nil
83 "The keymap of the current Hydra called.")
84
85 (defvar hydra-curr-on-exit nil
86 "The on-exit predicate for the current Hydra.")
87
88 (defvar hydra-curr-foreign-keys nil
89 "The current :foreign-keys behavior.")
90
91 (defun hydra-set-transient-map (keymap on-exit &optional foreign-keys)
92 "Set KEYMAP to the highest priority.
93
94 Call ON-EXIT when the KEYMAP is deactivated.
95
96 FOREIGN-KEYS determines the deactivation behavior, when a command
97 that isn't in KEYMAP is called:
98
99 nil: deactivate KEYMAP and run the command.
100 run: keep KEYMAP and run the command.
101 warn: keep KEYMAP and issue a warning instead of running the command."
102 (setq hydra-curr-map keymap)
103 (setq hydra-curr-on-exit on-exit)
104 (setq hydra-curr-foreign-keys foreign-keys)
105 (add-hook 'pre-command-hook 'hydra--clearfun)
106 (internal-push-keymap keymap 'overriding-terminal-local-map))
107
108 (defun hydra--clearfun ()
109 "Disable the current Hydra unless `this-command' is a head."
110 (if (memq this-command '(handle-switch-frame
111 keyboard-quit))
112 (hydra-disable)
113 (unless (eq this-command
114 (lookup-key hydra-curr-map (this-command-keys-vector)))
115 (unless (cl-case hydra-curr-foreign-keys
116 (warn
117 (setq this-command 'hydra-amaranth-warn))
118 (run
119 t)
120 (t nil))
121 (hydra-disable)))))
122
123 (defun hydra-disable ()
124 "Disable the current Hydra."
125 (remove-hook 'pre-command-hook 'hydra--clearfun)
126 (internal-pop-keymap hydra-curr-map 'overriding-terminal-local-map)
127 (when hydra-curr-on-exit
128 (let ((on-exit hydra-curr-on-exit))
129 (setq hydra-curr-on-exit nil)
130 (funcall on-exit))))
131
132 (unless (fboundp 'internal-push-keymap)
133 (defun internal-push-keymap (keymap symbol)
134 (let ((map (symbol-value symbol)))
135 (unless (memq keymap map)
136 (unless (memq 'add-keymap-witness (symbol-value symbol))
137 (setq map (make-composed-keymap nil (symbol-value symbol)))
138 (push 'add-keymap-witness (cdr map))
139 (set symbol map))
140 (push keymap (cdr map))))))
141
142 (unless (fboundp 'internal-pop-keymap)
143 (defun internal-pop-keymap (keymap symbol)
144 (let ((map (symbol-value symbol)))
145 (when (memq keymap map)
146 (setf (cdr map) (delq keymap (cdr map))))
147 (let ((tail (cddr map)))
148 (and (or (null tail) (keymapp tail))
149 (eq 'add-keymap-witness (nth 1 map))
150 (set symbol tail))))))
151
152 (defun hydra-amaranth-warn ()
153 (interactive)
154 (message "An amaranth Hydra can only exit through a blue head"))
155
156 ;;* Customize
157 (defgroup hydra nil
158 "Make bindings that stick around."
159 :group 'bindings
160 :prefix "hydra-")
161
162 (defcustom hydra-is-helpful t
163 "When t, display a hint with possible bindings in the echo area."
164 :type 'boolean
165 :group 'hydra)
166
167 (defcustom hydra-lv t
168 "When non-nil, `lv-message' (not `message') will be used to display hints."
169 :type 'boolean)
170
171 (defcustom hydra-verbose nil
172 "When non-nil, hydra will issue some non essential style warnings."
173 :type 'boolean)
174
175 (defcustom hydra-key-format-spec "%s"
176 "Default `format'-style specifier for _a_ syntax in docstrings.
177 When nil, you can specify your own at each location like this: _ 5a_.")
178
179 (defface hydra-face-red
180 '((t (:foreground "#FF0000" :bold t)))
181 "Red Hydra heads will persist indefinitely."
182 :group 'hydra)
183
184 (defface hydra-face-blue
185 '((t (:foreground "#0000FF" :bold t)))
186 "Blue Hydra heads will vanquish the Hydra.")
187
188 (defface hydra-face-amaranth
189 '((t (:foreground "#E52B50" :bold t)))
190 "Amaranth body has red heads and warns on intercepting non-heads.
191 Vanquishable only through a blue head.")
192
193 (defface hydra-face-pink
194 '((t (:foreground "#FF6EB4" :bold t)))
195 "Pink body has red heads and on intercepting non-heads calls them without quitting.
196 Vanquishable only through a blue head.")
197
198 (defface hydra-face-teal
199 '((t (:foreground "#367588" :bold t)))
200 "Teal body has blue heads an warns on intercepting non-heads.
201 Vanquishable only through a blue head.")
202
203 ;;* Fontification
204 (defun hydra-add-font-lock ()
205 "Fontify `defhydra' statements."
206 (font-lock-add-keywords
207 'emacs-lisp-mode
208 '(("(\\(defhydra\\)\\_> +\\(.*?\\)\\_>"
209 (1 font-lock-keyword-face)
210 (2 font-lock-type-face))
211 ("(\\(defhydradio\\)\\_> +\\(.*?\\)\\_>"
212 (1 font-lock-keyword-face)
213 (2 font-lock-type-face)))))
214
215 ;;* Universal Argument
216 (defvar hydra-base-map
217 (let ((map (make-sparse-keymap)))
218 (define-key map [?\C-u] 'hydra--universal-argument)
219 (define-key map [?-] 'hydra--negative-argument)
220 (define-key map [?0] 'hydra--digit-argument)
221 (define-key map [?1] 'hydra--digit-argument)
222 (define-key map [?2] 'hydra--digit-argument)
223 (define-key map [?3] 'hydra--digit-argument)
224 (define-key map [?4] 'hydra--digit-argument)
225 (define-key map [?5] 'hydra--digit-argument)
226 (define-key map [?6] 'hydra--digit-argument)
227 (define-key map [?7] 'hydra--digit-argument)
228 (define-key map [?8] 'hydra--digit-argument)
229 (define-key map [?9] 'hydra--digit-argument)
230 (define-key map [kp-0] 'hydra--digit-argument)
231 (define-key map [kp-1] 'hydra--digit-argument)
232 (define-key map [kp-2] 'hydra--digit-argument)
233 (define-key map [kp-3] 'hydra--digit-argument)
234 (define-key map [kp-4] 'hydra--digit-argument)
235 (define-key map [kp-5] 'hydra--digit-argument)
236 (define-key map [kp-6] 'hydra--digit-argument)
237 (define-key map [kp-7] 'hydra--digit-argument)
238 (define-key map [kp-8] 'hydra--digit-argument)
239 (define-key map [kp-9] 'hydra--digit-argument)
240 (define-key map [kp-subtract] 'hydra--negative-argument)
241 map)
242 "Keymap that all Hydras inherit. See `universal-argument-map'.")
243
244 (defun hydra--universal-argument (arg)
245 "Forward to (`universal-argument' ARG)."
246 (interactive "P")
247 (setq prefix-arg (if (consp arg)
248 (list (* 4 (car arg)))
249 (if (eq arg '-)
250 (list -4)
251 '(4)))))
252
253 (defun hydra--digit-argument (arg)
254 "Forward to (`digit-argument' ARG)."
255 (interactive "P")
256 (let ((universal-argument-map
257 (if (fboundp 'universal-argument--mode)
258 hydra-curr-map
259 universal-argument-map)))
260 (digit-argument arg)))
261
262 (defun hydra--negative-argument (arg)
263 "Forward to (`negative-argument' ARG)."
264 (interactive "P")
265 (let ((universal-argument-map hydra-curr-map))
266 (negative-argument arg)))
267
268 ;;* Repeat
269 (defvar hydra-repeat--prefix-arg nil
270 "Prefix arg to use with `hydra-repeat'.")
271
272 (defvar hydra-repeat--command nil
273 "Command to use with `hydra-repeat'.")
274
275 (defun hydra-repeat (&optional arg)
276 "Repeat last command with last prefix arg.
277 When ARG is non-nil, use that instead."
278 (interactive "p")
279 (if (eq arg 1)
280 (unless (string-match "hydra-repeat$" (symbol-name last-command))
281 (setq hydra-repeat--command last-command)
282 (setq hydra-repeat--prefix-arg last-prefix-arg))
283 (setq hydra-repeat--prefix-arg arg))
284 (setq current-prefix-arg hydra-repeat--prefix-arg)
285 (funcall hydra-repeat--command))
286
287 ;;* Misc internals
288 (defun hydra--callablep (x)
289 "Test if X is callable."
290 (or (functionp x)
291 (and (consp x)
292 (memq (car x) '(function quote)))))
293
294 (defun hydra--make-callable (x)
295 "Generate a callable symbol from X.
296 If X is a function symbol or a lambda, return it. Otherwise, it
297 should be a single statement. Wrap it in an interactive lambda."
298 (if (or (symbolp x) (functionp x))
299 x
300 `(lambda ()
301 (interactive)
302 ,x)))
303
304 (defun hydra-plist-get-default (plist prop default)
305 "Extract a value from a property list.
306 PLIST is a property list, which is a list of the form
307 \(PROP1 VALUE1 PROP2 VALUE2...).
308
309 Return the value corresponding to PROP, or DEFAULT if PROP is not
310 one of the properties on the list."
311 (if (memq prop plist)
312 (plist-get plist prop)
313 default))
314
315 (defun hydra--head-property (h prop &optional default)
316 "Return for Hydra head H the value of property PROP.
317 Return DEFAULT if PROP is not in H."
318 (hydra-plist-get-default (cl-cdddr h) prop default))
319
320 (defun hydra--head-color (h body)
321 "Return the color of a Hydra head H with BODY."
322 (let* ((exit (hydra--head-property h :exit 'default))
323 (color (hydra--head-property h :color))
324 (foreign-keys (hydra--body-foreign-keys body))
325 (head-color
326 (cond ((eq exit 'default)
327 (cl-case color
328 (blue 'blue)
329 (red 'red)
330 (t
331 (unless (null color)
332 (error "Use only :blue or :red for heads: %S" h)))))
333 ((null exit)
334 (if color
335 (error "Don't mix :color and :exit - they are aliases: %S" h)
336 (cl-case foreign-keys
337 (run 'pink)
338 (warn 'amaranth)
339 (t 'red))))
340 ((eq exit t)
341 (if color
342 (error "Don't mix :color and :exit - they are aliases: %S" h)
343 'blue))
344 (t
345 (error "Unknown :exit %S" exit)))))
346 (cond ((null (cadr h))
347 (when head-color
348 (hydra--complain
349 "Doubly specified blue head - nil cmd is already blue: %S" h))
350 'blue)
351 ((null head-color)
352 (hydra--body-color body))
353 ((null foreign-keys)
354 head-color)
355 ((eq foreign-keys 'run)
356 (if (eq head-color 'red)
357 'pink
358 'blue))
359 ((eq foreign-keys 'warn)
360 (if (memq head-color '(red amaranth))
361 'amaranth
362 'teal))
363 (t
364 (error "Unexpected %S %S" h body)))))
365
366 (defun hydra--body-foreign-keys (body)
367 "Return what BODY does with a non-head binding."
368 (or
369 (plist-get (cddr body) :foreign-keys)
370 (let ((color (plist-get (cddr body) :color)))
371 (cl-case color
372 ((amaranth teal) 'warn)
373 (pink 'run)))))
374
375 (defun hydra--body-color (body)
376 "Return the color of BODY.
377 BODY is the second argument to `defhydra'"
378 (let ((color (plist-get (cddr body) :color))
379 (exit (plist-get (cddr body) :exit))
380 (foreign-keys (plist-get (cddr body) :foreign-keys)))
381 (cond ((eq foreign-keys 'warn)
382 (if exit 'teal 'amaranth))
383 ((eq foreign-keys 'run) 'pink)
384 (exit 'blue)
385 (color color)
386 (t 'red))))
387
388 (defun hydra--face (h body)
389 "Return the face for a Hydra head H with BODY."
390 (cl-case (hydra--head-color h body)
391 (blue 'hydra-face-blue)
392 (red 'hydra-face-red)
393 (amaranth 'hydra-face-amaranth)
394 (pink 'hydra-face-pink)
395 (teal 'hydra-face-teal)
396 (t (error "Unknown color for %S" h))))
397
398 (defvar hydra--input-method-function nil
399 "Store overridden `input-method-function' here.")
400
401 (defun hydra-default-pre ()
402 "Default setup that happens in each head before :pre."
403 (when (eq input-method-function 'key-chord-input-method)
404 (unless hydra--input-method-function
405 (setq hydra--input-method-function input-method-function)
406 (setq input-method-function nil))))
407
408 (defun hydra-keyboard-quit ()
409 "Quitting function similar to `keyboard-quit'."
410 (interactive)
411 (hydra-disable)
412 (cancel-timer hydra-timer)
413 (when hydra--input-method-function
414 (setq input-method-function hydra--input-method-function)
415 (setq hydra--input-method-function nil))
416 (if hydra-lv
417 (when (window-live-p lv-wnd)
418 (let ((buf (window-buffer lv-wnd)))
419 (delete-window lv-wnd)
420 (kill-buffer buf)))
421 (message ""))
422 nil)
423
424 (defun hydra--hint (body heads)
425 "Generate a hint for the echo area.
426 BODY, and HEADS are parameters to `defhydra'."
427 (let (alist)
428 (dolist (h heads)
429 (let ((val (assoc (cadr h) alist))
430 (pstr (hydra-fontify-head h body)))
431 (unless (null (cl-caddr h))
432 (if val
433 (setf (cadr val)
434 (concat (cadr val) " " pstr))
435 (push
436 (cons (cadr h)
437 (cons pstr (cl-caddr h)))
438 alist)))))
439 (mapconcat
440 (lambda (x)
441 (format
442 (if (> (length (cdr x)) 0)
443 (concat "[%s]: " (cdr x))
444 "%s")
445 (car x)))
446 (nreverse (mapcar #'cdr alist))
447 ", ")))
448
449 (defvar hydra-fontify-head-function nil
450 "Possible replacement for `hydra-fontify-head-default'.")
451
452 (defun hydra-fontify-head-default (head body)
453 "Produce a pretty string from HEAD and BODY.
454 HEAD's binding is returned as a string with a colored face."
455 (propertize (car head) 'face (hydra--face head body)))
456
457 (defun hydra-fontify-head-greyscale (head body)
458 "Produce a pretty string from HEAD and BODY.
459 HEAD's binding is returned as a string wrapped with [] or {}."
460 (let ((color (hydra--head-color head body)))
461 (format
462 (if (eq color 'blue)
463 "[%s]"
464 "{%s}") (car head))))
465
466 (defun hydra-fontify-head (head body)
467 "Produce a pretty string from HEAD and BODY."
468 (funcall (or hydra-fontify-head-function 'hydra-fontify-head-default)
469 head body))
470
471 (defun hydra--format (_name body docstring heads)
472 "Generate a `format' statement from STR.
473 \"%`...\" expressions are extracted into \"%S\".
474 _NAME, BODY, DOCSTRING and HEADS are parameters of `defhydra'.
475 The expressions can be auto-expanded according to NAME."
476 (setq docstring (replace-regexp-in-string "\\^" "" docstring))
477 (let ((rest (hydra--hint body heads))
478 (start 0)
479 varlist
480 offset)
481 (while (setq start
482 (string-match
483 "\\(?:%\\( ?-?[0-9]*s?\\)\\(`[a-z-A-Z/0-9]+\\|(\\)\\)\\|\\(?:_\\( ?-?[0-9]*\\)\\([a-z-A-Z~.,;:0-9/|?<>={}*+#]+\\)_\\)"
484 docstring start))
485 (cond ((eq ?_ (aref (match-string 0 docstring) 0))
486 (let* ((key (match-string 4 docstring))
487 (head (assoc key heads)))
488 (if head
489 (progn
490 (push (hydra-fontify-head head body) varlist)
491 (setq docstring
492 (replace-match
493 (or
494 hydra-key-format-spec
495 (concat "%" (match-string 3 docstring) "s"))
496 t nil docstring)))
497 (error "Unrecognized key: _%s_" key))))
498
499 (t
500 (let* ((varp (if (eq ?` (aref (match-string 2 docstring) 0)) 1 0))
501 (spec (match-string 1 docstring))
502 (lspec (length spec)))
503 (setq offset
504 (with-temp-buffer
505 (insert (substring docstring (+ 1 start varp
506 (length spec))))
507 (goto-char (point-min))
508 (push (read (current-buffer)) varlist)
509 (- (point) (point-min))))
510 (when (or (zerop lspec)
511 (/= (aref spec (1- (length spec))) ?s))
512 (setq spec (concat spec "S")))
513 (setq docstring
514 (concat
515 (substring docstring 0 start)
516 "%" spec
517 (substring docstring (+ start offset 1 lspec varp))))))))
518 (if (eq ?\n (aref docstring 0))
519 `(concat (format ,(substring docstring 1) ,@(nreverse varlist))
520 ,rest)
521 `(format ,(concat docstring ": " rest ".")))))
522
523 (defun hydra--message (name body docstring heads)
524 "Generate code to display the hint in the preferred echo area.
525 Set `hydra-lv' to choose the echo area.
526 NAME, BODY, DOCSTRING, and HEADS are parameters of `defhydra'."
527 (let ((format-expr (hydra--format name body docstring heads)))
528 `(if hydra-lv
529 (lv-message ,format-expr)
530 (message ,format-expr))))
531
532 (defun hydra--complain (format-string &rest args)
533 "Forward to (`message' FORMAT-STRING ARGS) unless `hydra-verbose' is nil."
534 (when hydra-verbose
535 (apply #'warn format-string args)))
536
537 (defun hydra--doc (body-key body-name heads)
538 "Generate a part of Hydra docstring.
539 BODY-KEY is the body key binding.
540 BODY-NAME is the symbol that identifies the Hydra.
541 HEADS is a list of heads."
542 (format
543 "Create a hydra with %s body and the heads:\n\n%s\n\n%s"
544 (if body-key
545 (format "a \"%s\"" body-key)
546 "no")
547 (mapconcat
548 (lambda (x)
549 (format "\"%s\": `%S'" (car x) (cadr x)))
550 heads ",\n")
551 (format "The body can be accessed via `%S'." body-name)))
552
553 (defun hydra--make-defun (name body doc head
554 keymap body-pre body-before-exit
555 &optional body-after-exit)
556 "Make a defun wrapper, using NAME, BODY, DOC, HEAD, and KEYMAP.
557 NAME and BODY are the arguments to `defhydra'.
558 DOC was generated with `hydra--doc'.
559 HEAD is one of the HEADS passed to `defhydra'.
560 BODY-PRE is added to the start of the wrapper.
561 BODY-BEFORE-EXIT will be called before the hydra quits.
562 BODY-AFTER-EXIT is added to the end of the wrapper."
563 (let ((name (hydra--head-name head name body))
564 (cmd (when (car head)
565 (hydra--make-callable
566 (cadr head))))
567 (color (when (car head)
568 (hydra--head-color head body)))
569 (doc (if (car head)
570 (format "%s\n\nCall the head: `%S'." doc (cadr head))
571 doc))
572 (hint (intern (format "%S/hint" name)))
573 (body-color (hydra--body-color body))
574 (body-timeout (plist-get body :timeout)))
575 `(defun ,name ()
576 ,doc
577 (interactive)
578 (hydra-default-pre)
579 ,@(when body-pre (list body-pre))
580 ,@(if (memq color '(blue teal))
581 `((hydra-keyboard-quit)
582 ,(if body-after-exit
583 `(unwind-protect
584 ,(when cmd `(call-interactively #',cmd))
585 ,body-after-exit)
586 (when cmd `(call-interactively #',cmd))))
587 (delq
588 nil
589 `(,(when cmd
590 `(condition-case err
591 (call-interactively #',cmd)
592 ((quit error)
593 (message "%S" err)
594 (unless hydra-lv
595 (sit-for 0.8)))))
596 (when hydra-is-helpful
597 (,hint))
598 (hydra-set-transient-map
599 ,keymap
600 (lambda () (hydra-keyboard-quit) ,body-before-exit)
601 ,(cond
602 ((memq body-color '(amaranth teal))
603 ''warn)
604 ((eq body-color 'pink)
605 ''run)
606 (t
607 nil)))
608 ,body-after-exit
609 ,(when body-timeout
610 `(hydra-timeout ,body-timeout))))))))
611
612 (defmacro hydra--make-funcall (sym)
613 "Transform SYM into a `funcall' to call it."
614 `(when (and ,sym (symbolp ,sym))
615 (setq ,sym `(funcall #',,sym))))
616
617 (defun hydra--head-name (h name body)
618 "Return the symbol for head H of hydra with NAME and BODY."
619 (let ((str (format "%S/%s" name
620 (if (symbolp (cadr h))
621 (cadr h)
622 (concat "lambda-" (car h))))))
623 (when (and (memq (hydra--head-color h body) '(blue teal))
624 (not (memq (cadr h) '(body nil))))
625 (setq str (concat str "-and-exit")))
626 (intern str)))
627
628 (defun hydra--delete-duplicates (heads)
629 "Return HEADS without entries that have the same CMD part.
630 In duplicate HEADS, :cmd-name is modified to whatever they duplicate."
631 (let ((ali '(((hydra-repeat . red) . hydra-repeat)))
632 res entry)
633 (dolist (h heads)
634 (if (setq entry (assoc (cons (cadr h)
635 (hydra--head-color h '(nil nil)))
636 ali))
637 (setf (cl-cdddr h) (plist-put (cl-cdddr h) :cmd-name (cdr entry)))
638 (push (cons (cons (cadr h)
639 (hydra--head-color h '(nil nil)))
640 (plist-get (cl-cdddr h) :cmd-name))
641 ali)
642 (push h res)))
643 (nreverse res)))
644
645 (defun hydra--pad (lst n)
646 "Pad LST with nil until length N."
647 (let ((len (length lst)))
648 (if (= len n)
649 lst
650 (append lst (make-list (- n len) nil)))))
651
652 (defun hydra--matrix (lst rows cols)
653 "Create a matrix from elements of LST.
654 The matrix size is ROWS times COLS."
655 (let ((ls (copy-sequence lst))
656 res)
657 (dotimes (_c cols)
658 (push (hydra--pad (hydra-multipop ls rows) rows) res))
659 (nreverse res)))
660
661 (defun hydra--cell (fstr names)
662 "Format a rectangular cell based on FSTR and NAMES.
663 FSTR is a format-style string with two string inputs: one for the
664 doc and one for the symbol name.
665 NAMES is a list of variables."
666 (let ((len (cl-reduce
667 (lambda (acc it) (max (length (symbol-name it)) acc))
668 names
669 :initial-value 0)))
670 (mapconcat
671 (lambda (sym)
672 (if sym
673 (format fstr
674 (documentation-property sym 'variable-documentation)
675 (let ((name (symbol-name sym)))
676 (concat name (make-string (- len (length name)) ?^)))
677 sym)
678 ""))
679 names
680 "\n")))
681
682 (defun hydra--vconcat (strs &optional joiner)
683 "Glue STRS vertically. They must be the same height.
684 JOINER is a function similar to `concat'."
685 (setq joiner (or joiner #'concat))
686 (mapconcat
687 (lambda (s)
688 (if (string-match " +$" s)
689 (replace-match "" nil nil s)
690 s))
691 (apply #'cl-mapcar joiner
692 (mapcar
693 (lambda (s) (split-string s "\n"))
694 strs))
695 "\n"))
696
697 (defcustom hydra-cell-format "% -20s %% -8`%s"
698 "The default format for docstring cells."
699 :type 'string)
700
701 (defun hydra--table (names rows cols &optional cell-formats)
702 "Format a `format'-style table from variables in NAMES.
703 The size of the table is ROWS times COLS.
704 CELL-FORMATS are `format' strings for each column.
705 If CELL-FORMATS is a string, it's used for all columns.
706 If CELL-FORMATS is nil, `hydra-cell-format' is used for all columns."
707 (setq cell-formats
708 (cond ((null cell-formats)
709 (make-list cols hydra-cell-format))
710 ((stringp cell-formats)
711 (make-list cols cell-formats))
712 (t
713 cell-formats)))
714 (hydra--vconcat
715 (cl-mapcar
716 #'hydra--cell
717 cell-formats
718 (hydra--matrix names rows cols))
719 (lambda (&rest x)
720 (mapconcat #'identity x " "))))
721
722 (defun hydra-reset-radios (names)
723 "Set varibles NAMES to their defaults.
724 NAMES should be defined by `defhydradio' or similar."
725 (dolist (n names)
726 (set n (aref (get n 'range) 0))))
727
728 (defvar hydra-timer (timer-create)
729 "Timer for `hydra-timeout'.")
730
731 (defun hydra-timeout (secs &optional function)
732 "In SECS seconds call FUNCTION, then function `hydra-keyboard-quit'.
733 Cancel the previous `hydra-timeout'."
734 (cancel-timer hydra-timer)
735 (setq hydra-timer (timer-create))
736 (timer-set-time hydra-timer
737 (timer-relative-time (current-time) secs))
738 (timer-set-function
739 hydra-timer
740 `(lambda ()
741 ,(when function
742 `(funcall ,function))
743 (hydra-keyboard-quit)))
744 (timer-activate hydra-timer))
745
746 ;;* Macros
747 ;;;###autoload
748 (defmacro defhydra (name body &optional docstring &rest heads)
749 "Create a Hydra - a family of functions with prefix NAME.
750
751 NAME should be a symbol, it will be the prefix of all functions
752 defined here.
753
754 BODY has the format:
755
756 (BODY-MAP BODY-KEY &rest BODY-PLIST)
757
758 DOCSTRING will be displayed in the echo area to identify the
759 Hydra. When DOCSTRING starts with a newline, special Ruby-style
760 substitution will be performed by `hydra--format'.
761
762 Functions are created on basis of HEADS, each of which has the
763 format:
764
765 (KEY CMD &optional HINT &rest PLIST)
766
767 BODY-MAP is a keymap; `global-map' is used quite often. Each
768 function generated from HEADS will be bound in BODY-MAP to
769 BODY-KEY + KEY (both are strings passed to `kbd'), and will set
770 the transient map so that all following heads can be called
771 though KEY only. BODY-KEY can be an empty string.
772
773 CMD is a callable expression: either an interactive function
774 name, or an interactive lambda, or a single sexp (it will be
775 wrapped in an interactive lambda).
776
777 HINT is a short string that identifies its head. It will be
778 printed beside KEY in the echo erea if `hydra-is-helpful' is not
779 nil. If you don't even want the KEY to be printed, set HINT
780 explicitly to nil.
781
782 The heads inherit their PLIST from BODY-PLIST and are allowed to
783 override some keys. The keys recognized are :exit and :bind.
784 :exit can be:
785
786 - nil (default): this head will continue the Hydra state.
787 - t: this head will stop the Hydra state.
788
789 :bind can be:
790 - nil: this head will not be bound in BODY-MAP.
791 - a lambda taking KEY and CMD used to bind a head.
792
793 It is possible to omit both BODY-MAP and BODY-KEY if you don't
794 want to bind anything. In that case, typically you will bind the
795 generated NAME/body command. This command is also the return
796 result of `defhydra'."
797 (declare (indent defun))
798 (cond ((stringp docstring))
799 ((and (consp docstring)
800 (memq (car docstring) '(hydra--table concat format)))
801 (setq docstring (concat "\n" (eval docstring))))
802 (t
803 (setq heads (cons docstring heads))
804 (setq docstring "hydra")))
805 (when (keywordp (car body))
806 (setq body (cons nil (cons nil body))))
807 (condition-case err
808 (let* ((keymap (copy-keymap hydra-base-map))
809 (keymap-name (intern (format "%S/keymap" name)))
810 (body-name (intern (format "%S/body" name)))
811 (body-key (cadr body))
812 (body-plist (cddr body))
813 (body-map (or (car body)
814 (plist-get body-plist :bind)))
815 (body-pre (plist-get body-plist :pre))
816 (body-body-pre (plist-get body-plist :body-pre))
817 (body-before-exit (or (plist-get body-plist :post)
818 (plist-get body-plist :before-exit)))
819 (body-after-exit (plist-get body-plist :after-exit))
820 (body-color (hydra--body-color body)))
821 (hydra--make-funcall body-before-exit)
822 (hydra--make-funcall body-after-exit)
823 (dolist (h heads)
824 (let ((len (length h)))
825 (cond ((< len 2)
826 (error "Each head should have at least two items: %S" h))
827 ((= len 2)
828 (setcdr (cdr h)
829 (list
830 (hydra-plist-get-default body-plist :hint "")))
831 (setcdr (nthcdr 2 h)
832 (list :cmd-name (hydra--head-name h name body))))
833 (t
834 (let ((hint (cl-caddr h)))
835 (unless (or (null hint)
836 (stringp hint))
837 (setcdr (cdr h) (cons
838 (hydra-plist-get-default body-plist :hint "")
839 (cddr h))))
840 (let ((hint-and-plist (cddr h)))
841 (if (null (cdr hint-and-plist))
842 (setcdr hint-and-plist
843 (list :cmd-name
844 (hydra--head-name h name body)))
845 (plist-put (cdr hint-and-plist)
846 :cmd-name
847 (hydra--head-name h name body)))))))))
848 (let ((doc (hydra--doc body-key body-name heads))
849 (heads-nodup (hydra--delete-duplicates heads)))
850 (mapc
851 (lambda (x)
852 (define-key keymap (kbd (car x))
853 (plist-get (cl-cdddr x) :cmd-name)))
854 heads)
855 (hydra--make-funcall body-pre)
856 (hydra--make-funcall body-body-pre)
857 (when (memq body-color '(amaranth pink))
858 (unless (cl-some
859 (lambda (h)
860 (memq (hydra--head-color h body) '(blue teal)))
861 heads)
862 (error
863 "An %S Hydra must have at least one blue head in order to exit"
864 body-color)))
865 `(progn
866 ;; create keymap
867 (set (defvar ,keymap-name
868 nil
869 ,(format "Keymap for %S." name))
870 ',keymap)
871 ;; create defuns
872 ,@(mapcar
873 (lambda (head)
874 (hydra--make-defun name body doc head keymap-name
875 body-pre
876 body-before-exit
877 body-after-exit))
878 heads-nodup)
879 ;; free up keymap prefix
880 ,@(unless (or (null body-key)
881 (null body-map)
882 (hydra--callablep body-map))
883 `((unless (keymapp (lookup-key ,body-map (kbd ,body-key)))
884 (define-key ,body-map (kbd ,body-key) nil))))
885 ;; bind keys
886 ,@(delq nil
887 (mapcar
888 (lambda (head)
889 (let ((name (hydra--head-property head :cmd-name)))
890 (when (and (cadr head)
891 (or body-key body-map))
892 (let ((bind (hydra--head-property head :bind body-map))
893 (final-key
894 (if body-key
895 (vconcat (kbd body-key) (kbd (car head)))
896 (kbd (car head)))))
897 (cond ((null bind) nil)
898 ((hydra--callablep bind)
899 `(funcall ,bind ,final-key (function ,name)))
900 ((and (symbolp bind)
901 (if (boundp bind)
902 (keymapp (symbol-value bind))
903 t))
904 `(define-key ,bind ,final-key (function ,name)))
905 (t
906 (error "Invalid :bind property `%S' for head %S" bind head)))))))
907 heads))
908 (defun ,(intern (format "%S/hint" name)) ()
909 ,(hydra--message name body docstring heads))
910 ,(hydra--make-defun
911 name body doc '(nil body)
912 keymap-name
913 (or body-body-pre body-pre) body-before-exit
914 '(setq prefix-arg current-prefix-arg)))))
915 (error
916 (message "Error in defhydra %S: %s" name (cdr err))
917 nil)))
918
919 (defmacro defhydradio (name _body &rest heads)
920 "Create radios with prefix NAME.
921 _BODY specifies the options; there are none currently.
922 HEADS have the format:
923
924 (TOGGLE-NAME &optional VALUE DOC)
925
926 TOGGLE-NAME will be used along with NAME to generate a variable
927 name and a function that cycles it with the same name. VALUE
928 should be an array. The first element of VALUE will be used to
929 inialize the variable.
930 VALUE defaults to [nil t].
931 DOC defaults to TOGGLE-NAME split and capitalized."
932 (declare (indent defun))
933 `(progn
934 ,@(apply #'append
935 (mapcar (lambda (h)
936 (hydra--radio name h))
937 heads))
938 (defvar ,(intern (format "%S/names" name))
939 ',(mapcar (lambda (h) (intern (format "%S/%S" name (car h))))
940 heads))))
941
942 (defmacro hydra-multipop (lst n)
943 "Return LST's first N elements while removing them."
944 `(if (<= (length ,lst) ,n)
945 (prog1 ,lst
946 (setq ,lst nil))
947 (prog1 ,lst
948 (setcdr
949 (nthcdr (1- ,n) (prog1 ,lst (setq ,lst (nthcdr ,n ,lst))))
950 nil))))
951
952 (defun hydra--radio (parent head)
953 "Generate a hydradio with PARENT from HEAD."
954 (let* ((name (car head))
955 (full-name (intern (format "%S/%S" parent name)))
956 (doc (cadr head))
957 (val (or (cl-caddr head) [nil t])))
958 `((defvar ,full-name ,(hydra--quote-maybe (aref val 0)) ,doc)
959 (put ',full-name 'range ,val)
960 (defun ,full-name ()
961 (hydra--cycle-radio ',full-name)))))
962
963 (defun hydra--quote-maybe (x)
964 "Quote X if it's a symbol."
965 (cond ((null x)
966 nil)
967 ((symbolp x)
968 (list 'quote x))
969 (t
970 x)))
971
972 (defun hydra--cycle-radio (sym)
973 "Set SYM to the next value in its range."
974 (let* ((val (symbol-value sym))
975 (range (get sym 'range))
976 (i 0)
977 (l (length range)))
978 (setq i (catch 'done
979 (while (< i l)
980 (if (equal (aref range i) val)
981 (throw 'done (1+ i))
982 (cl-incf i)))
983 (error "Val not in range for %S" sym)))
984 (set sym
985 (aref range
986 (if (>= i l)
987 0
988 i)))))
989
990 (provide 'hydra)
991
992 ;;; Local Variables:
993 ;;; outline-regexp: ";;\\*+"
994 ;;; End:
995
996 ;;; hydra.el ends here