]> code.delx.au - gnu-emacs-elpa/blob - avy.el
avy.el (avy-all-windows-alt): New defcustom
[gnu-emacs-elpa] / avy.el
1 ;;; avy.el --- set-based completion -*- lexical-binding: t -*-
2
3 ;; Copyright (C) 2015 Free Software Foundation, Inc.
4
5 ;; Author: Oleh Krehel <ohwoeowho@gmail.com>
6 ;; URL: https://github.com/abo-abo/avy
7 ;; Version: 0.3.0
8 ;; Package-Requires: ((emacs "24.1") (cl-lib "0.5"))
9 ;; Keywords: point, location
10
11 ;; This file is part of GNU Emacs.
12
13 ;; This file is free software; you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation; either version 3, or (at your option)
16 ;; any later version.
17
18 ;; This program is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
22
23 ;; For a full copy of the GNU General Public License
24 ;; see <http://www.gnu.org/licenses/>.
25
26 ;;; Commentary:
27 ;;
28 ;; This package provides a generic completion method based on building
29 ;; a balanced decision tree with each candidate being a leaf. To
30 ;; traverse the tree from the root to a desired leaf, typically a
31 ;; sequence of `read-key' can be used.
32 ;;
33 ;; In order for `read-key' to make sense, the tree needs to be
34 ;; visualized appropriately, with a character at each branch node. So
35 ;; this completion method works only for things that you can see on
36 ;; your screen, all at once:
37 ;;
38 ;; * character positions
39 ;; * word or subword start positions
40 ;; * line beginning positions
41 ;; * link positions
42 ;; * window positions
43 ;;
44 ;; If you're familiar with the popular `ace-jump-mode' package, this
45 ;; package does all that and more, without the implementation
46 ;; headache.
47
48 ;;; Code:
49 (require 'cl-lib)
50 (require 'ring)
51
52 ;;* Customization
53 (defgroup avy nil
54 "Jump to things tree-style."
55 :group 'convenience
56 :prefix "avy-")
57
58 (defcustom avy-keys '(?a ?s ?d ?f ?g ?h ?j ?k ?l)
59 "Default keys for jumping.
60 Any key is either a character representing a self-inserting
61 key (letters, digits, punctuation, etc.) or a symbol denoting a
62 non-printing key like an arrow key (left, right, up, down). For
63 non-printing keys, a corresponding entry in
64 `avy-key-to-char-alist' must exist in order to visualize the key
65 in the avy overlays."
66 :type '(repeat :tag "Keys" (choice (character :tag "char")
67 (symbol :tag "non-printing key"))))
68
69 (defcustom avy-keys-alist nil
70 "Alist of avy-jump commands to `avy-keys' overriding the default `avy-keys'."
71 :type '(alist
72 :key-type (choice :tag "Command"
73 (const avy-goto-char)
74 (const avy-goto-char-2)
75 (const avy-isearch)
76 (const avy-goto-line)
77 (const avy-goto-subword-0)
78 (const avy-goto-subword-1)
79 (const avy-goto-word-0)
80 (const avy-goto-word-1)
81 (const avy-copy-line)
82 (const avy-copy-region)
83 (const avy-move-line))
84 :value-type (repeat :tag "Keys" character)))
85
86 (defcustom avy-style 'at-full
87 "The default method of displaying the overlays.
88 Use `avy-styles-alist' to customize this per-command."
89 :type '(choice
90 (const :tag "Pre" pre)
91 (const :tag "At" at)
92 (const :tag "At Full" at-full)
93 (const :tag "Post" post)
94 (const :tag "De Bruijn" de-bruijn)))
95
96 (defcustom avy-styles-alist nil
97 "Alist of avy-jump commands to the style for each command.
98 If the commands isn't on the list, `avy-style' is used."
99 :type '(alist
100 :key-type (choice :tag "Command"
101 (const avy-goto-char)
102 (const avy-goto-char-2)
103 (const avy-isearch)
104 (const avy-goto-line)
105 (const avy-goto-subword-0)
106 (const avy-goto-subword-1)
107 (const avy-goto-word-0)
108 (const avy-goto-word-1)
109 (const avy-copy-line)
110 (const avy-copy-region)
111 (const avy-move-line))
112 :value-type (choice
113 (const :tag "Pre" pre)
114 (const :tag "At" at)
115 (const :tag "At Full" at-full)
116 (const :tag "Post" post)
117 (const :tag "De Bruijn" de-bruijn))))
118
119 (defcustom avy-dispatch-alist
120 '((?x . avy-action-kill)
121 (?m . avy-action-mark)
122 (?n . avy-action-copy))
123 "List of actions for `avy-handler-default'.
124
125 Each item is (KEY . ACTION). When KEY not on `avy-keys' is
126 pressed during the dispatch, ACTION is set to replace the default
127 `avy-action-goto' once a candidate is finally selected."
128 :type
129 '(alist
130 :key-type (choice (character :tag "Char"))
131 :value-type (choice
132 (const :tag "Mark" avy-action-mark)
133 (const :tag "Copy" avy-action-copy)
134 (const :tag "Kill" avy-action-kill))))
135
136 (defcustom avy-background nil
137 "When non-nil, a gray background will be added during the selection."
138 :type 'boolean)
139
140 (defcustom avy-all-windows t
141 "Determine the list of windows to consider in search of candidates."
142 :type
143 '(choice
144 (const :tag "All Frames" all-frames)
145 (const :tag "This Frame" t)
146 (const :tag "This Window" nil)))
147
148 (defcustom avy-case-fold-search t
149 "Non-nil if searches should ignore case."
150 :type 'boolean)
151
152 (defcustom avy-word-punc-regexp "[!-/:-@[-`{-~]"
153 "Regexp of punctuation chars that count as word starts for `avy-goto-word-1.
154 When nil, punctuation chars will not be matched.
155
156 \"[!-/:-@[-`{-~]\" will match all printable punctuation chars."
157 :type 'regexp)
158
159 (defcustom avy-ignored-modes '(image-mode doc-view-mode pdf-view-mode)
160 "List of modes to ignore when searching for candidates.
161 Typically, these modes don't use the text representation.")
162
163 (defvar avy-translate-char-function #'identity
164 "Function to translate user input key into another key.
165 For example, to make SPC do the same as ?a, use
166 \(lambda (c) (if (= c 32) ?a c)).")
167
168 (defface avy-lead-face-0
169 '((t (:foreground "white" :background "#4f57f9")))
170 "Face used for first non-terminating leading chars.")
171
172 (defface avy-lead-face-1
173 '((t (:foreground "white" :background "gray")))
174 "Face used for matched leading chars.")
175
176 (defface avy-lead-face-2
177 '((t (:foreground "white" :background "#f86bf3")))
178 "Face used for leading chars.")
179
180 (defface avy-lead-face
181 '((t (:foreground "white" :background "#e52b50")))
182 "Face used for the leading chars.")
183
184 (defface avy-background-face
185 '((t (:foreground "gray40")))
186 "Face for whole window background during selection.")
187
188 (defface avy-goto-char-timer-face
189 '((t (:inherit highlight)))
190 "Face for matches during reading chars using `avy-goto-char-timer'.")
191
192 (defconst avy-lead-faces '(avy-lead-face
193 avy-lead-face-0
194 avy-lead-face-2
195 avy-lead-face
196 avy-lead-face-0
197 avy-lead-face-2)
198 "Face sequence for `avy--overlay-at-full'.")
199
200 (defvar avy-key-to-char-alist '((left . ?◀)
201 (right . ?▶)
202 (up . ?▲)
203 (down . ?▼)
204 (prior . ?△)
205 (next . ?▽))
206 "An alist from non-character keys to printable chars used in avy overlays.
207 This alist must contain all keys used in `avy-keys' which are not
208 self-inserting keys and thus aren't read as characters.")
209
210 ;;* Internals
211 ;;** Tree
212 (defmacro avy-multipop (lst n)
213 "Remove LST's first N elements and return them."
214 `(if (<= (length ,lst) ,n)
215 (prog1 ,lst
216 (setq ,lst nil))
217 (prog1 ,lst
218 (setcdr
219 (nthcdr (1- ,n) (prog1 ,lst (setq ,lst (nthcdr ,n ,lst))))
220 nil))))
221
222 (defun avy--de-bruijn (keys n)
223 "De Bruijn sequence for alphabet KEYS and subsequences of length N."
224 (let* ((k (length keys))
225 (a (make-list (* n k) 0))
226 sequence)
227 (cl-labels ((db (T p)
228 (if (> T n)
229 (if (eq (% n p) 0)
230 (setq sequence
231 (append sequence
232 (cl-subseq a 1 (1+ p)))))
233 (setf (nth T a) (nth (- T p) a))
234 (db (1+ T) p)
235 (cl-loop for j from (1+ (nth (- T p) a)) to (1- k) do
236 (setf (nth T a) j)
237 (db (1+ T) T)))))
238 (db 1 1)
239 (mapcar (lambda (n)
240 (nth n keys))
241 sequence))))
242
243 (defun avy--path-alist-1 (lst seq-len keys)
244 "Build a De Bruin sequence from LST.
245 SEQ-LEN is how many elements of KEYS it takes to identify a match."
246 (let ((db-seq (avy--de-bruijn keys seq-len))
247 prev-pos prev-seq prev-win path-alist)
248 ;; The De Bruijn seq is cyclic, so append the seq-len - 1 first chars to
249 ;; the end.
250 (setq db-seq (nconc db-seq (cl-subseq db-seq 0 (1- seq-len))))
251 (cl-labels ((subseq-and-pop ()
252 (when (nth (1- seq-len) db-seq)
253 (prog1 (cl-subseq db-seq 0 seq-len)
254 (pop db-seq)))))
255 (while lst
256 (let* ((cur (car lst))
257 (pos (cond
258 ;; ace-window has matches of the form (pos . wnd)
259 ((integerp (car cur)) (car cur))
260 ;; avy-jump have form ((start . end) . wnd)
261 ((consp (car cur)) (caar cur))
262 (t (error "Unexpected match representation: %s" cur))))
263 (win (cdr cur))
264 (path (if prev-pos
265 (let ((diff (if (eq win prev-win)
266 (- pos prev-pos)
267 0)))
268 (when (and (> diff 0) (< diff seq-len))
269 (while (and (nth (1- seq-len) db-seq)
270 (not
271 (eq 0 (cl-search
272 (cl-subseq prev-seq diff)
273 (cl-subseq db-seq 0 seq-len)))))
274 (pop db-seq)))
275 (subseq-and-pop))
276 (subseq-and-pop))))
277 (if (not path)
278 (setq lst nil
279 path-alist nil)
280 (push (cons path (car lst)) path-alist)
281 (setq prev-pos pos
282 prev-seq path
283 prev-win win
284 lst (cdr lst))))))
285 (nreverse path-alist)))
286
287 (defun avy-tree (lst keys)
288 "Coerce LST into a balanced tree.
289 The degree of the tree is the length of KEYS.
290 KEYS are placed appropriately on internal nodes."
291 (let ((len (length keys)))
292 (cl-labels
293 ((rd (ls)
294 (let ((ln (length ls)))
295 (if (< ln len)
296 (cl-pairlis keys
297 (mapcar (lambda (x) (cons 'leaf x)) ls))
298 (let ((ks (copy-sequence keys))
299 res)
300 (dolist (s (avy-subdiv ln len))
301 (push (cons (pop ks)
302 (if (eq s 1)
303 (cons 'leaf (pop ls))
304 (rd (avy-multipop ls s))))
305 res))
306 (nreverse res))))))
307 (rd lst))))
308
309 (defun avy-subdiv (n b)
310 "Distribute N in B terms in a balanced way."
311 (let* ((p (1- (floor (+ (log n b) 1e-6))))
312 (x1 (expt b p))
313 (x2 (* b x1))
314 (delta (- n x2))
315 (n2 (/ delta (- x2 x1)))
316 (n1 (- b n2 1)))
317 (append
318 (make-list n1 x1)
319 (list
320 (- n (* n1 x1) (* n2 x2)))
321 (make-list n2 x2))))
322
323 (defun avy-traverse (tree walker &optional recur-key)
324 "Traverse TREE generated by `avy-tree'.
325 WALKER is a function that takes KEYS and LEAF.
326
327 RECUR-KEY is used in recursion.
328
329 LEAF is a member of LST argument of `avy-tree'.
330
331 KEYS is the path from the root of `avy-tree' to LEAF."
332 (dolist (br tree)
333 (let ((key (cons (car br) recur-key)))
334 (if (eq (cadr br) 'leaf)
335 (funcall walker key (cddr br))
336 (avy-traverse (cdr br) walker key)))))
337
338 (defvar avy-action nil
339 "Function to call at the end of select.")
340
341 (defun avy-handler-default (char)
342 "The default handler for a bad CHAR."
343 (let (dispatch)
344 (if (setq dispatch (assoc char avy-dispatch-alist))
345 (progn
346 (setq avy-action (cdr dispatch))
347 (throw 'done 'restart))
348 (signal 'user-error (list "No such candidate" char))
349 (throw 'done nil))))
350
351 (defvar avy-handler-function 'avy-handler-default
352 "A function to call for a bad `read-key' in `avy-read'.")
353
354 (defvar avy-current-path ""
355 "Store the current incomplete path during `avy-read'.")
356
357 (defun avy-read (tree display-fn cleanup-fn)
358 "Select a leaf from TREE using consecutive `read-char'.
359
360 DISPLAY-FN should take CHAR and LEAF and signify that LEAFs
361 associated with CHAR will be selected if CHAR is pressed. This is
362 commonly done by adding a CHAR overlay at LEAF position.
363
364 CLEANUP-FN should take no arguments and remove the effects of
365 multiple DISPLAY-FN invokations."
366 (catch 'done
367 (setq avy-current-path "")
368 (while tree
369 (let ((avy--leafs nil))
370 (avy-traverse tree
371 (lambda (path leaf)
372 (push (cons path leaf) avy--leafs)))
373 (dolist (x avy--leafs)
374 (funcall display-fn (car x) (cdr x))))
375 (let ((char (funcall avy-translate-char-function (read-key)))
376 branch)
377 (funcall cleanup-fn)
378 (if (setq branch (assoc char tree))
379 (if (eq (car (setq tree (cdr branch))) 'leaf)
380 (throw 'done (cdr tree))
381 (setq avy-current-path
382 (concat avy-current-path (string (avy--key-to-char char)))))
383 (funcall avy-handler-function char))))))
384
385 (defun avy-read-de-bruijn (lst keys)
386 "Select from LST dispatching on KEYS."
387 ;; In theory, the De Bruijn sequence B(k,n) has k^n subsequences of length n
388 ;; (the path length) usable as paths, thus that's the lower bound. Due to
389 ;; partially overlapping matches, not all subsequences may be usable, so it's
390 ;; possible that the path-len must be incremented, e.g., if we're matching
391 ;; for x and a buffer contains xaxbxcx only every second subsequence is
392 ;; usable for the four matches.
393 (catch 'done
394 (let* ((path-len (ceiling (log (length lst) (length keys))))
395 (alist (avy--path-alist-1 lst path-len keys)))
396 (while (not alist)
397 (cl-incf path-len)
398 (setq alist (avy--path-alist-1 lst path-len keys)))
399 (let* ((len (length (caar alist)))
400 (i 0))
401 (setq avy-current-path "")
402 (while (< i len)
403 (dolist (x (reverse alist))
404 (avy--overlay-at-full (reverse (car x)) (cdr x)))
405 (let ((char (funcall avy-translate-char-function (read-key))))
406 (avy--remove-leading-chars)
407 (setq alist
408 (delq nil
409 (mapcar (lambda (x)
410 (when (eq (caar x) char)
411 (cons (cdr (car x)) (cdr x))))
412 alist)))
413 (setq avy-current-path
414 (concat avy-current-path (string (avy--key-to-char char))))
415 (cl-incf i)
416 (unless alist
417 (funcall avy-handler-function char))))
418 (cdar alist)))))
419
420 ;;** Rest
421 (defun avy-window-list ()
422 "Return a list of windows depending on `avy-all-windows'."
423 (cond ((eq avy-all-windows 'all-frames)
424 (cl-mapcan #'window-list (frame-list)))
425
426 ((eq avy-all-windows t)
427 (window-list))
428
429 ((null avy-all-windows)
430 (list (selected-window)))
431
432 (t
433 (error "Unrecognized option: %S" avy-all-windows))))
434
435 (defcustom avy-all-windows-alt t
436 "The alternative `avy-all-windows' for use with \\[universal-argument]."
437 :type '(choice
438 (const :tag "All windows on the current frame" t)
439 (const :tag "All windows on all frames" all-frames)))
440
441 (defmacro avy-dowindows (flip &rest body)
442 "Depending on FLIP and `avy-all-windows' run BODY in each or selected window."
443 (declare (indent 1)
444 (debug (form body)))
445 `(let ((avy-all-windows (if ,flip
446 avy-all-windows-alt
447 avy-all-windows)))
448 (dolist (wnd (avy-window-list))
449 (with-selected-window wnd
450 (unless (memq major-mode avy-ignored-modes)
451 ,@body)))))
452
453 (defmacro avy-with (command &rest body)
454 "Set `avy-keys' according to COMMAND and execute BODY.
455 Set `avy-style' according to COMMMAND as well."
456 (declare (indent 1)
457 (debug (form body)))
458 `(let ((avy-keys (or (cdr (assq ',command avy-keys-alist))
459 avy-keys))
460 (avy-style (or (cdr (assq ',command avy-styles-alist))
461 avy-style)))
462 (setq avy-action nil)
463 ,@body))
464
465 (defun avy-action-goto (pt)
466 "Goto PT."
467 (goto-char pt))
468
469 (defun avy-action-mark (pt)
470 "Mark sexp at PT."
471 (goto-char pt)
472 (set-mark (point))
473 (forward-sexp))
474
475 (defun avy-action-copy (pt)
476 "Copy sexp starting on PT."
477 (save-excursion
478 (let (str)
479 (goto-char pt)
480 (forward-sexp)
481 (setq str (buffer-substring pt (point)))
482 (kill-new str)
483 (message "Copied: %s" str))))
484
485 (defun avy-action-kill (pt)
486 "Kill sexp at PT."
487 (goto-char pt)
488 (forward-sexp)
489 (kill-region pt (point))
490 (message "Killed: %s" (current-kill 0)))
491
492 (defun avy--process (candidates overlay-fn)
493 "Select one of CANDIDATES using `avy-read'.
494 Use OVERLAY-FN to visualize the decision overlay."
495 (unless (and (consp (car candidates))
496 (windowp (cdar candidates)))
497 (setq candidates
498 (mapcar (lambda (x) (cons x (selected-window)))
499 candidates)))
500 (let ((len (length candidates))
501 (cands (copy-sequence candidates))
502 res)
503 (if (= len 0)
504 (message "zero candidates")
505 (if (= len 1)
506 (setq res (car candidates))
507 (unwind-protect
508 (progn
509 (avy--make-backgrounds
510 (avy-window-list))
511 (setq res (if (eq avy-style 'de-bruijn)
512 (avy-read-de-bruijn
513 candidates avy-keys)
514 (avy-read (avy-tree candidates avy-keys)
515 overlay-fn
516 #'avy--remove-leading-chars))))
517 (avy--done)))
518 (cond ((eq res 'restart)
519 (avy--process cands overlay-fn))
520 ;; ignore exit from `avy-handler-function'
521 ((eq res 'exit))
522 (t
523 (avy-push-mark)
524 (when (and (consp res)
525 (windowp (cdr res)))
526 (let* ((window (cdr res))
527 (frame (window-frame window)))
528 (unless (equal frame (selected-frame))
529 (select-frame-set-input-focus frame))
530 (select-window window))
531 (setq res (car res)))
532
533 (funcall (or avy-action 'avy-action-goto)
534 (if (consp res)
535 (car res)
536 res)))))))
537
538 (defvar avy--overlays-back nil
539 "Hold overlays for when `avy-background' is t.")
540
541 (defun avy--make-backgrounds (wnd-list)
542 "Create a dim background overlay for each window on WND-LIST."
543 (when avy-background
544 (setq avy--overlays-back
545 (mapcar (lambda (w)
546 (let ((ol (make-overlay
547 (window-start w)
548 (window-end w)
549 (window-buffer w))))
550 (overlay-put ol 'face 'avy-background-face)
551 (overlay-put ol 'window w)
552 ol))
553 wnd-list))))
554
555 (defun avy--done ()
556 "Clean up overlays."
557 (mapc #'delete-overlay avy--overlays-back)
558 (setq avy--overlays-back nil)
559 (avy--remove-leading-chars))
560
561 (defun avy--next-visible-point ()
562 "Return the next closest point without 'invisible property."
563 (let ((s (point)))
564 (while (and (not (= (point-max) (setq s (next-overlay-change s))))
565 (get-char-property s 'invisible)))
566 s))
567
568 (defun avy--next-invisible-point ()
569 "Return the next closest point with 'invisible property."
570 (let ((s (point)))
571 (while (and (not (= (point-max) (setq s (next-overlay-change s))))
572 (not (get-char-property s 'invisible))))
573 s))
574
575 (defun avy--find-visible-regions (rbeg rend)
576 "Return a list of all visible regions between RBEG and REND."
577 (setq rbeg (max rbeg (point-min)))
578 (setq rend (min rend (point-max)))
579 (when (< rbeg rend)
580 (let (visibles beg)
581 (save-excursion
582 (save-restriction
583 (narrow-to-region rbeg rend)
584 (setq beg (goto-char (point-min)))
585 (while (not (= (point) (point-max)))
586 (goto-char (avy--next-invisible-point))
587 (push (cons beg (point)) visibles)
588 (setq beg (goto-char (avy--next-visible-point))))
589 (nreverse visibles))))))
590
591 (defun avy--regex-candidates (regex &optional beg end pred group)
592 "Return all elements that match REGEX.
593 Each element of the list is ((BEG . END) . WND)
594 When PRED is non-nil, it's a filter for matching point positions.
595 When GROUP is non-nil, (BEG . END) should delimit that regex group."
596 (setq group (or group 0))
597 (let ((case-fold-search (or avy-case-fold-search
598 (not (string= regex (upcase regex)))))
599 candidates)
600 (avy-dowindows current-prefix-arg
601 (dolist (pair (avy--find-visible-regions
602 (or beg (window-start))
603 (or end (window-end (selected-window) t))))
604 (save-excursion
605 (goto-char (car pair))
606 (while (re-search-forward regex (cdr pair) t)
607 (unless (get-char-property (1- (point)) 'invisible)
608 (when (or (null pred)
609 (funcall pred))
610 (push (cons (cons (match-beginning group)
611 (match-end group))
612 wnd) candidates)))))))
613 (nreverse candidates)))
614
615 (defvar avy--overlay-offset 0
616 "The offset to apply in `avy--overlay'.")
617
618 (defvar avy--overlays-lead nil
619 "Hold overlays for leading chars.")
620
621 (defun avy--remove-leading-chars ()
622 "Remove leading char overlays."
623 (mapc #'delete-overlay avy--overlays-lead)
624 (setq avy--overlays-lead nil))
625
626 (defun avy--old-str (pt wnd)
627 "Return a one-char string at PT in WND."
628 (let ((old-str (with-selected-window wnd
629 (buffer-substring pt (1+ pt)))))
630 (if avy-background
631 (propertize old-str 'face 'avy-background-face)
632 old-str)))
633
634 (defun avy--overlay (str beg end wnd &optional compose-fn)
635 "Create an overlay with STR from BEG to END in WND.
636 COMPOSE-FN is a lambda that concatenates the old string at BEG with STR."
637 (when (<= (1+ beg) (with-selected-window wnd (point-max)))
638 (let* ((beg (+ beg avy--overlay-offset))
639 (ol (make-overlay beg (or end (1+ beg)) (window-buffer wnd)))
640 (old-str (avy--old-str beg wnd))
641 (os-line-prefix (get-text-property 0 'line-prefix old-str))
642 (os-wrap-prefix (get-text-property 0 'wrap-prefix old-str)))
643 (when os-line-prefix
644 (add-text-properties 0 1 `(line-prefix ,os-line-prefix) str))
645 (when os-wrap-prefix
646 (add-text-properties 0 1 `(wrap-prefix ,os-wrap-prefix) str))
647 (overlay-put ol 'window wnd)
648 (overlay-put ol 'category 'avy)
649 (overlay-put ol 'display (funcall
650 (or compose-fn #'concat)
651 str old-str))
652 (push ol avy--overlays-lead))))
653
654 (defcustom avy-highlight-first nil
655 "When non-nil highlight the first decision char with `avy-lead-face-0'.
656 Do this even when the char is terminating."
657 :type 'boolean)
658
659 (defun avy--key-to-char (c)
660 "If C is no character, translate it using `avy-key-to-char-alist'."
661 (if (characterp c)
662 c
663 (or (cdr (assoc c avy-key-to-char-alist))
664 (error "Unknown key %s" c))))
665
666 (defun avy-candidate-beg (leaf)
667 "Return the start position for LEAF."
668 (cond ((numberp leaf)
669 leaf)
670 ((consp (car leaf))
671 (caar leaf))
672 (t
673 (car leaf))))
674
675 (defun avy-candidate-end (leaf)
676 "Return the end position for LEAF."
677 (cond ((numberp leaf)
678 leaf)
679 ((consp (car leaf))
680 (cdar leaf))
681 (t
682 (car leaf))))
683
684 (defun avy-candidate-wnd (leaf)
685 "Return the window for LEAF."
686 (if (consp leaf)
687 (cdr leaf)
688 (selected-window)))
689
690 (defun avy--overlay-pre (path leaf)
691 "Create an overlay with PATH at LEAF.
692 PATH is a list of keys from tree root to LEAF.
693 LEAF is normally ((BEG . END) . WND)."
694 (let* ((path (mapcar #'avy--key-to-char path))
695 (str (propertize (apply #'string (reverse path))
696 'face 'avy-lead-face)))
697 (when (or avy-highlight-first (> (length str) 1))
698 (set-text-properties 0 1 '(face avy-lead-face-0) str))
699 (setq str (concat
700 (propertize avy-current-path
701 'face 'avy-lead-face-1)
702 str))
703 (avy--overlay
704 str
705 (avy-candidate-beg leaf) nil
706 (avy-candidate-wnd leaf))))
707
708 (defun avy--overlay-at (path leaf)
709 "Create an overlay with PATH at LEAF.
710 PATH is a list of keys from tree root to LEAF.
711 LEAF is normally ((BEG . END) . WND)."
712 (let* ((path (mapcar #'avy--key-to-char path))
713 (str (propertize
714 (string (car (last path)))
715 'face 'avy-lead-face)))
716 (avy--overlay
717 str
718 (avy-candidate-beg leaf) nil
719 (avy-candidate-wnd leaf)
720 (lambda (str old-str)
721 (cond ((string= old-str "\n")
722 (concat str "\n"))
723 ;; add padding for wide-width character
724 ((eq (string-width old-str) 2)
725 (concat str " "))
726 (t
727 str))))))
728
729 (defun avy--overlay-at-full (path leaf)
730 "Create an overlay with PATH at LEAF.
731 PATH is a list of keys from tree root to LEAF.
732 LEAF is normally ((BEG . END) . WND)."
733 (let* ((path (mapcar #'avy--key-to-char path))
734 (str (propertize
735 (apply #'string (reverse path))
736 'face 'avy-lead-face))
737 (len (length path))
738 (beg (avy-candidate-beg leaf))
739 (wnd (cdr leaf))
740 end)
741 (dotimes (i len)
742 (set-text-properties (- len i 1) (- len i)
743 `(face ,(nth i avy-lead-faces))
744 str))
745 (when (eq avy-style 'de-bruijn)
746 (setq str (concat
747 (propertize avy-current-path
748 'face 'avy-lead-face-1)
749 str))
750 (setq len (length str)))
751 (with-selected-window wnd
752 (save-excursion
753 (goto-char beg)
754 (let* ((lep (if (bound-and-true-p visual-line-mode)
755 (save-excursion
756 (end-of-visual-line)
757 (point))
758 (line-end-position)))
759 (len-and-str (avy--update-offset-and-str len str lep)))
760 (setq len (car len-and-str))
761 (setq str (cdr len-and-str))
762 (setq end (if (= beg lep)
763 (1+ beg)
764 (min (+ beg
765 (if (eq (char-after) ?\t)
766 1
767 len))
768 lep)))
769 (when (and (bound-and-true-p visual-line-mode)
770 (> len (- end beg)))
771 (setq len (- end beg))
772 (let ((old-str (apply #'string (reverse path))))
773 (setq str
774 (substring
775 (propertize
776 old-str
777 'face
778 (if (= (length old-str) 1)
779 'avy-lead-face
780 'avy-lead-face-0))
781 0 len)))))))
782 (avy--overlay
783 str beg end wnd
784 (lambda (str old-str)
785 (cond ((string= old-str "\n")
786 (concat str "\n"))
787 ((string= old-str "\t")
788 (concat str (make-string (max (- tab-width len) 0) ?\ )))
789 (t
790 ;; add padding for wide-width character
791 (if (eq (string-width old-str) 2)
792 (concat str " ")
793 str)))))))
794
795 (defun avy--overlay-post (path leaf)
796 "Create an overlay with PATH at LEAF.
797 PATH is a list of keys from tree root to LEAF.
798 LEAF is normally ((BEG . END) . WND)."
799 (let* ((path (mapcar #'avy--key-to-char path))
800 (str (propertize (apply #'string (reverse path))
801 'face 'avy-lead-face)))
802 (when (or avy-highlight-first (> (length str) 1))
803 (set-text-properties 0 1 '(face avy-lead-face-0) str))
804 (setq str (concat
805 (propertize avy-current-path
806 'face 'avy-lead-face-1)
807 str))
808 (avy--overlay
809 str
810 (avy-candidate-end leaf) nil
811 (avy-candidate-wnd leaf))))
812
813 (defun avy--update-offset-and-str (offset str lep)
814 "Recalculate the length of the new overlay at point.
815
816 OFFSET is the previous overlay length.
817 STR is the overlay string that we wish to add.
818 LEP is the line end position.
819
820 We want to add an overlay between point and END=point+OFFSET.
821 When other overlays already exist between point and END, set
822 OFFSET to be the difference between the start of the first
823 overlay and point. This is equivalent to truncating our new
824 overlay, so that it doesn't intersect with overlays that already
825 exist."
826 (let* ((wnd (selected-window))
827 (beg (point))
828 (oov (delq nil
829 (mapcar
830 (lambda (o)
831 (and (eq (overlay-get o 'category) 'avy)
832 (eq (overlay-get o 'window) wnd)
833 (overlay-start o)))
834 (overlays-in beg (min (+ beg offset) lep))))))
835 (when oov
836 (setq offset (- (apply #'min oov) beg))
837 (setq str (substring str 0 offset)))
838 (let ((other-ov (cl-find-if
839 (lambda (o)
840 (and (eq (overlay-get o 'category) 'avy)
841 (eq (overlay-start o) beg)
842 (not (eq (overlay-get o 'window) wnd))))
843 (overlays-in (point) (min (+ (point) offset) lep)))))
844 (when (and other-ov
845 (> (overlay-end other-ov)
846 (+ beg offset)))
847 (setq str (concat str (buffer-substring
848 (+ beg offset)
849 (overlay-end other-ov))))
850 (setq offset (- (overlay-end other-ov)
851 beg))))
852 (cons offset str)))
853
854 (defun avy--style-fn (style)
855 "Transform STYLE symbol to a style function."
856 (cl-case style
857 (pre #'avy--overlay-pre)
858 (at #'avy--overlay-at)
859 (at-full 'avy--overlay-at-full)
860 (post #'avy--overlay-post)
861 (de-bruijn #'avy--overlay-at-full)
862 (t (error "Unexpected style %S" style))))
863
864 (defun avy--generic-jump (regex window-flip style &optional beg end)
865 "Jump to REGEX.
866 When WINDOW-FLIP is non-nil, do the opposite of `avy-all-windows'.
867 STYLE determines the leading char overlay style.
868 BEG and END delimit the area where candidates are searched."
869 (let ((avy-all-windows
870 (if window-flip
871 (not avy-all-windows)
872 avy-all-windows)))
873 (avy--process
874 (avy--regex-candidates regex beg end)
875 (avy--style-fn style))))
876
877 ;;* Commands
878 ;;;###autoload
879 (defun avy-goto-char (char &optional arg)
880 "Jump to the currently visible CHAR.
881 The window scope is determined by `avy-all-windows' (ARG negates it)."
882 (interactive (list (read-char "char: " t)
883 current-prefix-arg))
884 (avy-with avy-goto-char
885 (avy--generic-jump
886 (if (= 13 char)
887 "\n"
888 (regexp-quote (string char)))
889 arg
890 avy-style)))
891
892 ;;;###autoload
893 (defun avy-goto-char-in-line (char)
894 "Jump to the currently visible CHAR in the current line."
895 (interactive (list (read-char "char: " t)))
896 (avy-with avy-goto-char
897 (avy--generic-jump
898 (regexp-quote (string char))
899 avy-all-windows
900 avy-style
901 (line-beginning-position)
902 (line-end-position))))
903
904 ;;;###autoload
905 (defun avy-goto-char-2 (char1 char2 &optional arg)
906 "Jump to the currently visible CHAR1 followed by CHAR2.
907 The window scope is determined by `avy-all-windows' (ARG negates it)."
908 (interactive (list (read-char "char 1: " t)
909 (read-char "char 2: " t)
910 current-prefix-arg))
911 (avy-with avy-goto-char-2
912 (avy--generic-jump
913 (regexp-quote (string char1 char2))
914 arg
915 avy-style)))
916
917 ;;;###autoload
918 (defun avy-isearch ()
919 "Jump to one of the current isearch candidates."
920 (interactive)
921 (avy-with avy-isearch
922 (let ((avy-background nil))
923 (avy--process
924 (avy--regex-candidates isearch-string)
925 (avy--style-fn avy-style))
926 (isearch-done))))
927
928 ;;;###autoload
929 (defun avy-goto-word-0 (arg)
930 "Jump to a word start.
931 The window scope is determined by `avy-all-windows' (ARG negates it)."
932 (interactive "P")
933 (avy-with avy-goto-word-0
934 (avy--generic-jump "\\b\\sw" arg avy-style)))
935
936 ;;;###autoload
937 (defun avy-goto-word-1 (char &optional arg)
938 "Jump to the currently visible CHAR at a word start.
939 The window scope is determined by `avy-all-windows' (ARG negates it)."
940 (interactive (list (read-char "char: " t)
941 current-prefix-arg))
942 (avy-with avy-goto-word-1
943 (let* ((str (string char))
944 (regex (cond ((string= str ".")
945 "\\.")
946 ((and avy-word-punc-regexp
947 (string-match avy-word-punc-regexp str))
948 (regexp-quote str))
949 (t
950 (concat
951 "\\b"
952 str)))))
953 (avy--generic-jump regex arg avy-style))))
954
955 (declare-function subword-backward "subword")
956 (defvar subword-backward-regexp)
957
958 ;;;###autoload
959 (defun avy-goto-subword-0 (&optional arg predicate)
960 "Jump to a word or subword start.
961
962 The window scope is determined by `avy-all-windows' (ARG negates it).
963
964 When PREDICATE is non-nil it's a function of zero parameters that
965 should return true."
966 (interactive "P")
967 (require 'subword)
968 (avy-with avy-goto-subword-0
969 (let ((case-fold-search nil)
970 (subword-backward-regexp
971 "\\(\\(\\W\\|[[:lower:][:digit:]]\\)\\([!-/:@`~[:upper:]]+\\W*\\)\\|\\W\\w+\\)")
972 candidates)
973 (avy-dowindows arg
974 (let ((ws (window-start))
975 window-cands)
976 (save-excursion
977 (goto-char (window-end (selected-window) t))
978 (subword-backward)
979 (while (> (point) ws)
980 (when (or (null predicate)
981 (and predicate (funcall predicate)))
982 (unless (get-char-property (point) 'invisible)
983 (push (cons (point) (selected-window)) window-cands)))
984 (subword-backward)))
985 (setq candidates (nconc candidates window-cands))))
986 (avy--process candidates (avy--style-fn avy-style)))))
987
988 ;;;###autoload
989 (defun avy-goto-subword-1 (char &optional arg)
990 "Jump to the currently visible CHAR at a subword start.
991 The window scope is determined by `avy-all-windows' (ARG negates it).
992 The case of CHAR is ignored."
993 (interactive (list (read-char "char: " t)
994 current-prefix-arg))
995 (avy-with avy-goto-subword-1
996 (let ((char (downcase char)))
997 (avy-goto-subword-0
998 arg (lambda () (eq (downcase (char-after)) char))))))
999
1000 ;;;###autoload
1001 (defun avy-goto-word-or-subword-1 ()
1002 "Forward to `avy-goto-subword-1' or `avy-goto-word-1'.
1003 Which one depends on variable `subword-mode'."
1004 (interactive)
1005 (if (bound-and-true-p subword-mode)
1006 (call-interactively #'avy-goto-subword-1)
1007 (call-interactively #'avy-goto-word-1)))
1008
1009 (defvar visual-line-mode)
1010
1011 (defun avy--line (&optional arg beg end)
1012 "Select a line.
1013 The window scope is determined by `avy-all-windows' (ARG negates it).
1014 Narrow the scope to BEG END."
1015 (let (candidates)
1016 (avy-dowindows arg
1017 (let ((ws (or beg (window-start))))
1018 (save-excursion
1019 (save-restriction
1020 (narrow-to-region ws (or end (window-end (selected-window) t)))
1021 (goto-char (point-min))
1022 (while (< (point) (point-max))
1023 (unless (get-char-property
1024 (max (1- (point)) ws) 'invisible)
1025 (push (cons
1026 (if (eq avy-style 'post)
1027 (line-end-position)
1028 (point))
1029 (selected-window)) candidates))
1030 (if visual-line-mode
1031 (progn
1032 (setq temporary-goal-column 0)
1033 (line-move-visual 1 t))
1034 (forward-line 1)))))))
1035 (setq avy-action #'identity)
1036 (avy--process (nreverse candidates) (avy--style-fn avy-style))))
1037
1038 ;;;###autoload
1039 (defun avy-goto-line (&optional arg)
1040 "Jump to a line start in current buffer.
1041
1042 When ARG is 1, jump to lines currently visible, with the option
1043 to cancel to `goto-line' by entering a number.
1044
1045 When ARG is 4, negate the window scope determined by
1046 `avy-all-windows'.
1047
1048 Otherwise, forward to `goto-line' with ARG."
1049 (interactive "p")
1050 (if (not (memq arg '(1 4)))
1051 (progn
1052 (goto-char (point-min))
1053 (forward-line (1- arg)))
1054 (avy-with avy-goto-line
1055 (let* ((avy-handler-function
1056 (lambda (char)
1057 (if (or (< char ?0)
1058 (> char ?9))
1059 (avy-handler-default char)
1060 (let ((line (read-from-minibuffer
1061 "Goto line: " (string char))))
1062 (when line
1063 (avy-push-mark)
1064 (goto-char (point-min))
1065 (forward-line (1- (string-to-number line)))
1066 (throw 'done 'exit))))))
1067 (r (avy--line (eq arg 4))))
1068 (unless (eq r t)
1069 (avy-action-goto r))))))
1070
1071 ;;;###autoload
1072 (defun avy-goto-line-above ()
1073 "Goto visible line above the cursor."
1074 (interactive)
1075 (let* ((avy-all-windows nil)
1076 (r (avy--line nil (window-start)
1077 (line-beginning-position))))
1078 (unless (eq r t)
1079 (avy-action-goto r))))
1080
1081 ;;;###autoload
1082 (defun avy-goto-line-below ()
1083 "Goto visible line below the cursor."
1084 (interactive)
1085 (let* ((avy-all-windows nil)
1086 (r (avy--line
1087 nil (line-beginning-position 2)
1088 (window-end (selected-window) t))))
1089 (unless (eq r t)
1090 (avy-action-goto r))))
1091
1092 (defcustom avy-line-insert-style 'above
1093 "How to insert the newly copied/cut line."
1094 :type '(choice
1095 (const :tag "Above" above)
1096 (const :tag "Below" below)))
1097
1098 ;;;###autoload
1099 (defun avy-copy-line (arg)
1100 "Copy a selected line above the current line.
1101 ARG lines can be used."
1102 (interactive "p")
1103 (avy-with avy-copy-line
1104 (let* ((start (avy--line))
1105 (str (buffer-substring-no-properties
1106 start
1107 (save-excursion
1108 (goto-char start)
1109 (move-end-of-line arg)
1110 (point)))))
1111 (cond ((eq avy-line-insert-style 'above)
1112 (beginning-of-line)
1113 (save-excursion
1114 (insert str "\n")))
1115 ((eq avy-line-insert-style 'below)
1116 (end-of-line)
1117 (insert "\n" str)
1118 (beginning-of-line))
1119 (t
1120 (user-error "Unexpected `avy-line-insert-style'"))))))
1121
1122 ;;;###autoload
1123 (defun avy-move-line (arg)
1124 "Move a selected line above the current line.
1125 ARG lines can be used."
1126 (interactive "p")
1127 (avy-with avy-move-line
1128 (let ((start (avy--line)))
1129 (save-excursion
1130 (goto-char start)
1131 (kill-whole-line arg))
1132 (cond ((eq avy-line-insert-style 'above)
1133 (beginning-of-line)
1134 (save-excursion
1135 (insert
1136 (current-kill 0))))
1137 ((eq avy-line-insert-style 'below)
1138 (end-of-line)
1139 (newline)
1140 (save-excursion
1141 (insert (substring (current-kill 0) 0 -1))))
1142 (t
1143 (user-error "Unexpected `avy-line-insert-style'"))))))
1144
1145 ;;;###autoload
1146 (defun avy-copy-region ()
1147 "Select two lines and copy the text between them here."
1148 (interactive)
1149 (avy-with avy-copy-region
1150 (let* ((beg (avy--line))
1151 (end (avy--line))
1152 (str (buffer-substring-no-properties
1153 beg
1154 (save-excursion
1155 (goto-char end)
1156 (line-end-position)))))
1157 (cond ((eq avy-line-insert-style 'above)
1158 (beginning-of-line)
1159 (save-excursion
1160 (insert str "\n")))
1161 ((eq avy-line-insert-style 'below)
1162 (end-of-line)
1163 (newline)
1164 (save-excursion
1165 (insert str)))
1166 (t
1167 (user-error "Unexpected `avy-line-insert-style'"))))))
1168
1169 ;;;###autoload
1170 (defun avy-setup-default ()
1171 "Setup the default shortcuts."
1172 (eval-after-load "isearch"
1173 '(define-key isearch-mode-map (kbd "C-'") 'avy-isearch)))
1174
1175 (defcustom avy-timeout-seconds 0.5
1176 "How many seconds to wait for the second char.")
1177
1178 (defun avy--read-candidates ()
1179 "Read as many chars as possible and return their occurences.
1180 At least one char must be read, and then repeatedly one next char
1181 may be read if it is entered before `avy-timeout-seconds'. `DEL'
1182 deletes the last char entered, and `RET' exits with the currently
1183 read string immediately instead of waiting for another char for
1184 `avy-timeout-seconds'.
1185 The format of the result is the same as that of `avy--regex-candidates'.
1186 This function obeys `avy-all-windows' setting."
1187 (let ((str "") char break overlays regex)
1188 (unwind-protect
1189 (progn
1190 (while (and (not break)
1191 (setq char
1192 (read-char (format "char%s: "
1193 (if (string= str "")
1194 str
1195 (format " (%s)" str)))
1196 t
1197 (and (not (string= str ""))
1198 avy-timeout-seconds))))
1199 ;; Unhighlight
1200 (dolist (ov overlays)
1201 (delete-overlay ov))
1202 (setq overlays nil)
1203 (cond
1204 ;; Handle RET
1205 ((= char 13)
1206 (setq break t))
1207 ;; Handle DEL
1208 ((= char 127)
1209 (let ((l (length str)))
1210 (when (>= l 1)
1211 (setq str (substring str 0 (1- l))))))
1212 (t
1213 (setq str (concat str (list char)))))
1214 ;; Highlight
1215 (when (>= (length str) 1)
1216 (let (found)
1217 (avy-dowindows current-prefix-arg
1218 (dolist (pair (avy--find-visible-regions
1219 (window-start)
1220 (window-end (selected-window) t)))
1221 (save-excursion
1222 (goto-char (car pair))
1223 (setq regex (regexp-quote str))
1224 (while (re-search-forward regex (cdr pair) t)
1225 (unless (get-char-property (1- (point)) 'invisible)
1226 (let ((ov (make-overlay
1227 (match-beginning 0)
1228 (match-end 0))))
1229 (setq found t)
1230 (push ov overlays)
1231 (overlay-put ov 'window (selected-window))
1232 (overlay-put ov 'face 'avy-goto-char-timer-face)))))))
1233 ;; No matches at all, so there's surely a typo in the input.
1234 (unless found (beep)))))
1235 (nreverse (mapcar (lambda (ov)
1236 (cons (cons (overlay-start ov)
1237 (overlay-end ov))
1238 (overlay-get ov 'window)))
1239 overlays)))
1240 (dolist (ov overlays)
1241 (delete-overlay ov)))))
1242
1243 ;;;###autoload
1244 (defun avy-goto-char-timer (&optional arg)
1245 "Read one or many consecutive chars and jump to the first one.
1246 The window scope is determined by `avy-all-windows' (ARG negates it)."
1247 (interactive "P")
1248 (let ((avy-all-windows (if arg
1249 (not avy-all-windows)
1250 avy-all-windows)))
1251 (avy-with avy-goto-char-timer
1252 (avy--process
1253 (avy--read-candidates)
1254 (avy--style-fn avy-style)))))
1255
1256 (defvar avy-ring (make-ring 20)
1257 "Hold the window and point history.")
1258
1259 (defun avy-push-mark ()
1260 "Store the current point and window."
1261 (ring-insert avy-ring
1262 (cons (point) (selected-window)))
1263 (unless (region-active-p)
1264 (push-mark)))
1265
1266 (defun avy-pop-mark ()
1267 "Jump back to the last location of `avy-push-mark'."
1268 (interactive)
1269 (let (res)
1270 (condition-case nil
1271 (progn
1272 (while (not (window-live-p
1273 (cdr (setq res (ring-remove avy-ring 0))))))
1274 (let* ((window (cdr res))
1275 (frame (window-frame window)))
1276 (when (and (frame-live-p frame)
1277 (not (eq frame (selected-frame))))
1278 (select-frame-set-input-focus frame))
1279 (select-window window)
1280 (goto-char (car res))))
1281 (error
1282 (set-mark-command 4)))))
1283
1284 (define-obsolete-function-alias
1285 'avy--goto 'identity "0.3.0"
1286 "Don't use this function any more.
1287 `avy--process' will do the jump all by itself.")
1288
1289 (define-obsolete-function-alias 'avy--with-avy-keys 'avy-with "0.3.0")
1290
1291 (provide 'avy)
1292
1293 ;;; avy.el ends here