]> code.delx.au - gnu-emacs-elpa/blob - ivy.el
ivy.el (ivy-next-history-element): Handle "M-n M-n" better
[gnu-emacs-elpa] / ivy.el
1 ;;; ivy.el --- Incremental Vertical completYon -*- 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/swiper
7 ;; Package-Requires: ((emacs "24.1"))
8 ;; Keywords: matching
9
10 ;; This file is part of GNU Emacs.
11
12 ;; This file is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 3, or (at your option)
15 ;; any later version.
16
17 ;; This program is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
21
22 ;; For a full copy of the GNU General Public License
23 ;; see <http://www.gnu.org/licenses/>.
24
25 ;;; Commentary:
26 ;;
27 ;; This package provides `ivy-read' as an alternative to
28 ;; `completing-read' and similar functions.
29 ;;
30 ;; There's no intricate code to determine the best candidate.
31 ;; Instead, the user can navigate to it with `ivy-next-line' and
32 ;; `ivy-previous-line'.
33 ;;
34 ;; The matching is done by splitting the input text by spaces and
35 ;; re-building it into a regex.
36 ;; So "for example" is transformed into "\\(for\\).*\\(example\\)".
37
38 ;;; Code:
39 (require 'cl-lib)
40 (require 'ffap)
41
42 ;;* Customization
43 (defgroup ivy nil
44 "Incremental vertical completion."
45 :group 'convenience)
46
47 (defgroup ivy-faces nil
48 "Font-lock faces for `ivy'."
49 :group 'ivy)
50
51 (defface ivy-current-match
52 '((((class color) (background light))
53 :background "#1a4b77" :foreground "white")
54 (((class color) (background dark))
55 :background "#65a7e2" :foreground "black"))
56 "Face used by Ivy for highlighting the current match.")
57
58 (defface ivy-minibuffer-match-face-1
59 '((((class color) (background light))
60 :background "#d3d3d3")
61 (((class color) (background dark))
62 :background "#555555"))
63 "The background face for `ivy' minibuffer matches.")
64
65 (defface ivy-minibuffer-match-face-2
66 '((((class color) (background light))
67 :background "#e99ce8" :weight bold)
68 (((class color) (background dark))
69 :background "#777777" :weight bold))
70 "Face for `ivy' minibuffer matches numbered 1 modulo 3.")
71
72 (defface ivy-minibuffer-match-face-3
73 '((((class color) (background light))
74 :background "#bbbbff" :weight bold)
75 (((class color) (background dark))
76 :background "#7777ff" :weight bold))
77 "Face for `ivy' minibuffer matches numbered 2 modulo 3.")
78
79 (defface ivy-minibuffer-match-face-4
80 '((((class color) (background light))
81 :background "#ffbbff" :weight bold)
82 (((class color) (background dark))
83 :background "#8a498a" :weight bold))
84 "Face for `ivy' minibuffer matches numbered 3 modulo 3.")
85
86 (defface ivy-confirm-face
87 '((t :foreground "ForestGreen" :inherit minibuffer-prompt))
88 "Face used by Ivy for a confirmation prompt.")
89
90 (defface ivy-match-required-face
91 '((t :foreground "red" :inherit minibuffer-prompt))
92 "Face used by Ivy for a match required prompt.")
93
94 (setcdr (assoc load-file-name custom-current-group-alist) 'ivy)
95
96 (defface ivy-subdir
97 '((t (:inherit 'dired-directory)))
98 "Face used by Ivy for highlighting subdirs in the alternatives.")
99
100 (defface ivy-modified-buffer
101 '((t :inherit 'default))
102 "Face used by Ivy for highlighting modified file visiting buffers.")
103
104 (defface ivy-remote
105 '((t (:foreground "#110099")))
106 "Face used by Ivy for highlighting remotes in the alternatives.")
107
108 (defface ivy-virtual
109 '((t :inherit font-lock-builtin-face))
110 "Face used by Ivy for matching virtual buffer names.")
111
112 (defcustom ivy-height 10
113 "Number of lines for the minibuffer window."
114 :type 'integer)
115
116 (defcustom ivy-count-format "%-4d "
117 "The style to use for displaying the current candidate count for `ivy-read'.
118 Set this to \"\" to suppress the count visibility.
119 Set this to \"(%d/%d) \" to display both the index and the count."
120 :type '(choice
121 (const :tag "Count disabled" "")
122 (const :tag "Count matches" "%-4d ")
123 (const :tag "Count matches and show current match" "(%d/%d) ")
124 string))
125
126 (defcustom ivy-wrap nil
127 "When non-nil, wrap around after the first and the last candidate."
128 :type 'boolean)
129
130 (defcustom ivy-display-style (unless (version< emacs-version "24.5") 'fancy)
131 "The style for formatting the minibuffer.
132
133 By default, the matched strings are copied as is.
134
135 The fancy display style highlights matching parts of the regexp,
136 a behavior similar to `swiper'.
137
138 This setting depends on `add-face-text-property' - a C function
139 available as of Emacs 24.5. Fancy style will render poorly in
140 earlier versions of Emacs."
141 :type '(choice
142 (const :tag "Plain" nil)
143 (const :tag "Fancy" fancy)))
144
145 (defcustom ivy-on-del-error-function 'minibuffer-keyboard-quit
146 "The handler for when `ivy-backward-delete-char' throws.
147 Usually a quick exit out of the minibuffer."
148 :type 'function)
149
150 (defcustom ivy-extra-directories '("../" "./")
151 "Add this to the front of the list when completing file names.
152 Only \"./\" and \"../\" apply here. They appear in reverse order."
153 :type '(repeat :tag "Dirs"
154 (choice
155 (const :tag "Parent Directory" "../")
156 (const :tag "Current Directory" "./"))))
157
158 (defcustom ivy-use-virtual-buffers nil
159 "When non-nil, add `recentf-mode' and bookmarks to `ivy-switch-buffer'."
160 :type 'boolean)
161
162 (defvar ivy--actions-list nil
163 "A list of extra actions per command.")
164
165 (defun ivy-set-actions (cmd actions)
166 "Set CMD extra exit points to ACTIONS."
167 (setq ivy--actions-list
168 (plist-put ivy--actions-list cmd actions)))
169
170 (defvar ivy--sources-list nil
171 "A list of extra sources per command.")
172
173 (defun ivy-set-sources (cmd sources)
174 "Attach to CMD a list of extra SOURCES.
175
176 Each static source is a function that takes no argument and
177 returns a list of strings.
178
179 The '(original-source) determines the position of the original
180 dynamic source.
181
182 Extra dynamic sources aren't supported yet.
183
184 Example:
185
186 (defun small-recentf ()
187 (cl-subseq recentf-list 0 20))
188
189 (ivy-set-sources
190 'counsel-locate
191 '((small-recentf)
192 (original-source)))
193 "
194 (setq ivy--sources-list
195 (plist-put ivy--sources-list cmd sources)))
196
197 ;;* Keymap
198 (require 'delsel)
199 (defvar ivy-minibuffer-map
200 (let ((map (make-sparse-keymap)))
201 (define-key map (kbd "C-m") 'ivy-done)
202 (define-key map (kbd "C-M-m") 'ivy-call)
203 (define-key map (kbd "C-j") 'ivy-alt-done)
204 (define-key map (kbd "C-M-j") 'ivy-immediate-done)
205 (define-key map (kbd "TAB") 'ivy-partial-or-done)
206 (define-key map (kbd "C-n") 'ivy-next-line)
207 (define-key map (kbd "C-p") 'ivy-previous-line)
208 (define-key map (kbd "<down>") 'ivy-next-line)
209 (define-key map (kbd "<up>") 'ivy-previous-line)
210 (define-key map (kbd "C-s") 'ivy-next-line-or-history)
211 (define-key map (kbd "C-r") 'ivy-reverse-i-search)
212 (define-key map (kbd "SPC") 'self-insert-command)
213 (define-key map (kbd "DEL") 'ivy-backward-delete-char)
214 (define-key map (kbd "M-DEL") 'ivy-backward-kill-word)
215 (define-key map (kbd "C-d") 'ivy-delete-char)
216 (define-key map (kbd "C-f") 'ivy-forward-char)
217 (define-key map (kbd "M-d") 'ivy-kill-word)
218 (define-key map (kbd "M-<") 'ivy-beginning-of-buffer)
219 (define-key map (kbd "M->") 'ivy-end-of-buffer)
220 (define-key map (kbd "M-n") 'ivy-next-history-element)
221 (define-key map (kbd "M-p") 'ivy-previous-history-element)
222 (define-key map (kbd "C-g") 'minibuffer-keyboard-quit)
223 (define-key map (kbd "C-v") 'ivy-scroll-up-command)
224 (define-key map (kbd "M-v") 'ivy-scroll-down-command)
225 (define-key map (kbd "C-M-n") 'ivy-next-line-and-call)
226 (define-key map (kbd "C-M-p") 'ivy-previous-line-and-call)
227 (define-key map (kbd "M-q") 'ivy-toggle-regexp-quote)
228 (define-key map (kbd "M-j") 'ivy-yank-word)
229 (define-key map (kbd "M-i") 'ivy-insert-current)
230 (define-key map (kbd "C-o") 'hydra-ivy/body)
231 (define-key map (kbd "M-o") 'ivy-dispatching-done)
232 (define-key map (kbd "C-M-o") 'ivy-dispatching-call)
233 (define-key map (kbd "C-k") 'ivy-kill-line)
234 (define-key map (kbd "S-SPC") 'ivy-restrict-to-matches)
235 (define-key map (kbd "M-w") 'ivy-kill-ring-save)
236 (define-key map (kbd "C-'") 'ivy-avy)
237 (define-key map (kbd "C-M-a") 'ivy-read-action)
238 (define-key map (kbd "C-c C-o") 'ivy-occur)
239 (define-key map (kbd "C-c C-a") 'ivy-toggle-ignore)
240 (define-key map (kbd "C-h m") 'ivy-help)
241 map)
242 "Keymap used in the minibuffer.")
243 (autoload 'hydra-ivy/body "ivy-hydra" "" t)
244
245 (defvar ivy-mode-map
246 (let ((map (make-sparse-keymap)))
247 (define-key map [remap switch-to-buffer]
248 'ivy-switch-buffer)
249 (define-key map [remap switch-to-buffer-other-window]
250 'ivy-switch-buffer-other-window)
251 map)
252 "Keymap for `ivy-mode'.")
253
254 ;;* Globals
255 (cl-defstruct ivy-state
256 prompt collection
257 predicate require-match initial-input
258 history preselect keymap update-fn sort
259 ;; The window in which `ivy-read' was called
260 window
261 ;; The buffer in which `ivy-read' was called
262 buffer
263 ;; The value of `ivy-text' to be used by `ivy-occur'
264 text
265 action
266 unwind
267 re-builder
268 matcher
269 ;; When this is non-nil, call it for each input change to get new candidates
270 dynamic-collection
271 caller)
272
273 (defvar ivy-last (make-ivy-state)
274 "The last parameters passed to `ivy-read'.
275
276 This should eventually become a stack so that you could use
277 `ivy-read' recursively.")
278
279 (defsubst ivy-set-action (action)
280 (setf (ivy-state-action ivy-last) action))
281
282 (defvar ivy-history nil
283 "History list of candidates entered in the minibuffer.
284
285 Maximum length of the history list is determined by the value
286 of `history-length'.")
287
288 (defvar ivy--directory nil
289 "Current directory when completing file names.")
290
291 (defvar ivy--length 0
292 "Store the amount of viable candidates.")
293
294 (defvar ivy-text ""
295 "Store the user's string as it is typed in.")
296
297 (defvar ivy--current ""
298 "Current candidate.")
299
300 (defvar ivy--index 0
301 "Store the index of the current candidate.")
302
303 (defvar ivy-exit nil
304 "Store 'done if the completion was successfully selected.
305 Otherwise, store nil.")
306
307 (defvar ivy--all-candidates nil
308 "Store the candidates passed to `ivy-read'.")
309
310 (defvar ivy--extra-candidates '((original-source))
311 "Store candidates added by the extra sources.
312
313 This is an internal-use alist. Each key is a function name, or
314 original-source (which represents where the current dynamic
315 candidates should go).
316
317 Each value is an evaluation of the function, in case of static
318 sources. These values will subsequently be filtered on `ivy-text'.
319
320 This variable is set by `ivy-read' and used by `ivy--set-candidates'.")
321
322 (defvar ivy-use-ignore t
323 "Store policy for user-configured candidate filtering.")
324
325 (defvar ivy--default nil
326 "Default initial input.")
327
328 (defvar ivy--prompt nil
329 "Store the format-style prompt.
330 When non-nil, it should contain at least one %d.")
331
332 (defvar ivy--prompt-extra ""
333 "Temporary modifications to the prompt.")
334
335 (defvar ivy--old-re nil
336 "Store the old regexp.")
337
338 (defvar ivy--old-cands nil
339 "Store the candidates matched by `ivy--old-re'.")
340
341 (defvar ivy--regex-function 'ivy--regex
342 "Current function for building a regex.")
343
344 (defvar ivy--subexps 0
345 "Number of groups in the current `ivy--regex'.")
346
347 (defvar ivy--full-length nil
348 "When :dynamic-collection is non-nil, this can be the total amount of candidates.")
349
350 (defvar ivy--old-text ""
351 "Store old `ivy-text' for dynamic completion.")
352
353 (defvar ivy-case-fold-search 'auto
354 "Store the current overriding `case-fold-search'.")
355
356 (defvar Info-current-file)
357
358 (defmacro ivy-quit-and-run (&rest body)
359 "Quit the minibuffer and run BODY afterwards."
360 `(progn
361 (put 'quit 'error-message "")
362 (run-at-time nil nil
363 (lambda ()
364 (put 'quit 'error-message "Quit")
365 ,@body))
366 (minibuffer-keyboard-quit)))
367
368 (defun ivy-exit-with-action (action)
369 "Quit the minibuffer and call ACTION afterwards."
370 (ivy-set-action
371 `(lambda (x)
372 (funcall ',action x)
373 (ivy-set-action ',(ivy-state-action ivy-last))))
374 (setq ivy-exit 'done)
375 (exit-minibuffer))
376
377 (defmacro with-ivy-window (&rest body)
378 "Execute BODY in the window from which `ivy-read' was called."
379 (declare (indent 0)
380 (debug t))
381 `(with-selected-window (ivy--get-window ivy-last)
382 ,@body))
383
384 (defun ivy--done (text)
385 "Insert TEXT and exit minibuffer."
386 (if (and ivy--directory
387 (not (eq (ivy-state-history ivy-last) 'grep-files-history)))
388 (insert (setq ivy--current (expand-file-name
389 text ivy--directory)))
390 (insert (setq ivy--current text)))
391 (setq ivy-exit 'done)
392 (exit-minibuffer))
393
394 ;;* Commands
395 (defun ivy-done ()
396 "Exit the minibuffer with the selected candidate."
397 (interactive)
398 (delete-minibuffer-contents)
399 (cond ((> ivy--length 0)
400 (ivy--done ivy--current))
401 ((memq (ivy-state-collection ivy-last)
402 '(read-file-name-internal internal-complete-buffer))
403 (if (or (not (eq confirm-nonexistent-file-or-buffer t))
404 (equal " (confirm)" ivy--prompt-extra))
405 (ivy--done ivy-text)
406 (setq ivy--prompt-extra " (confirm)")
407 (insert ivy-text)
408 (ivy--exhibit)))
409 ((memq (ivy-state-require-match ivy-last)
410 '(nil confirm confirm-after-completion))
411 (ivy--done ivy-text))
412 (t
413 (setq ivy--prompt-extra " (match required)")
414 (insert ivy-text)
415 (ivy--exhibit))))
416
417 (defun ivy-read-action ()
418 "Change the action to one of the available ones."
419 (interactive)
420 (let ((actions (ivy-state-action ivy-last)))
421 (unless (null (ivy--actionp actions))
422 (let* ((hint (concat (if (eq this-command 'ivy-read-action)
423 "Select action: "
424 ivy--current)
425 "\n"
426 (mapconcat
427 (lambda (x)
428 (format "%s: %s"
429 (propertize
430 (car x)
431 'face 'font-lock-builtin-face)
432 (nth 2 x)))
433 (cdr actions)
434 "\n")
435 "\n"))
436 (key (string (read-key hint)))
437 (action-idx (cl-position-if
438 (lambda (x) (equal (car x) key))
439 (cdr actions))))
440 (cond ((string= key "\a"))
441 ((null action-idx)
442 (error "%s is not bound" key))
443 (t
444 (message "")
445 (setcar actions (1+ action-idx))
446 (ivy-set-action actions)))))))
447
448 (defun ivy-dispatching-done ()
449 "Select one of the available actions and call `ivy-done'."
450 (interactive)
451 (ivy-read-action)
452 (ivy-done))
453
454 (defun ivy-dispatching-call ()
455 "Select one of the available actions and call `ivy-call'."
456 (interactive)
457 (let ((actions (copy-sequence (ivy-state-action ivy-last))))
458 (unwind-protect
459 (when (ivy-read-action)
460 (ivy-call))
461 (ivy-set-action actions))))
462
463 (defun ivy-build-tramp-name (x)
464 "Reconstruct X into a path.
465 Is is a cons cell, related to `tramp-get-completion-function'."
466 (let ((user (car x))
467 (domain (cadr x)))
468 (if user
469 (concat user "@" domain)
470 domain)))
471
472 (declare-function tramp-get-completion-function "tramp")
473 (declare-function Info-find-node "info")
474
475 (defun ivy-alt-done (&optional arg)
476 "Exit the minibuffer with the selected candidate.
477 When ARG is t, exit with current text, ignoring the candidates."
478 (interactive "P")
479 (cond (arg
480 (ivy-immediate-done))
481 (ivy--directory
482 (ivy--directory-done))
483 ((eq (ivy-state-collection ivy-last) 'Info-read-node-name-1)
484 (if (or (equal ivy--current "(./)")
485 (equal ivy--current "(../)"))
486 (ivy-quit-and-run
487 (ivy-read "Go to file: " 'read-file-name-internal
488 :action (lambda (x)
489 (Info-find-node
490 (expand-file-name x ivy--directory)
491 "Top"))))
492 (ivy-done)))
493 (t
494 (ivy-done))))
495
496 (defun ivy--directory-done ()
497 "Handle exit from the minibuffer when completing file names."
498 (let (dir)
499 (cond
500 ((equal ivy-text "/sudo::")
501 (setq dir (concat ivy-text ivy--directory))
502 (ivy--cd dir)
503 (ivy--exhibit))
504 ((or
505 (and
506 (not (equal ivy-text ""))
507 (ignore-errors
508 (file-directory-p
509 (setq dir
510 (file-name-as-directory
511 (expand-file-name
512 ivy-text ivy--directory))))))
513 (and
514 (not (string= ivy--current "./"))
515 (cl-plusp ivy--length)
516 (ignore-errors
517 (file-directory-p
518 (setq dir (file-name-as-directory
519 (expand-file-name
520 ivy--current ivy--directory)))))))
521 (ivy--cd dir)
522 (ivy--exhibit))
523 ((or (and (equal ivy--directory "/")
524 (string-match "\\`[^/]+:.*:.*\\'" ivy-text))
525 (string-match "\\`/[^/]+:.*:.*\\'" ivy-text))
526 (ivy-done))
527 ((or (and (equal ivy--directory "/")
528 (cond ((string-match
529 "\\`\\([^/]+?\\):\\(?:\\(.*\\)@\\)?\\(.*\\)\\'"
530 ivy-text))
531 ((string-match
532 "\\`\\([^/]+?\\):\\(?:\\(.*\\)@\\)?\\(.*\\)\\'"
533 ivy--current)
534 (setq ivy-text ivy--current))))
535 (string-match
536 "\\`/\\([^/]+?\\):\\(?:\\(.*\\)@\\)?\\(.*\\)\\'"
537 ivy-text))
538 (let ((method (match-string 1 ivy-text))
539 (user (match-string 2 ivy-text))
540 (rest (match-string 3 ivy-text))
541 res)
542 (require 'tramp)
543 (dolist (x (tramp-get-completion-function method))
544 (setq res (append res (funcall (car x) (cadr x)))))
545 (setq res (delq nil res))
546 (when user
547 (dolist (x res)
548 (setcar x user)))
549 (setq res (cl-delete-duplicates res :test #'equal))
550 (let* ((old-ivy-last ivy-last)
551 (enable-recursive-minibuffers t)
552 (host (ivy-read "user@host: "
553 (mapcar #'ivy-build-tramp-name res)
554 :initial-input rest)))
555 (setq ivy-last old-ivy-last)
556 (when host
557 (setq ivy--directory "/")
558 (ivy--cd (concat "/" method ":" host ":"))))))
559 (t
560 (ivy-done)))))
561
562 (defcustom ivy-tab-space nil
563 "When non-nil, `ivy-partial-or-done' should insert a space."
564 :type 'boolean)
565
566 (defun ivy-partial-or-done ()
567 "Complete the minibuffer text as much as possible.
568 If the text hasn't changed as a result, forward to `ivy-alt-done'."
569 (interactive)
570 (if (and (eq (ivy-state-collection ivy-last) #'read-file-name-internal)
571 (or (and (equal ivy--directory "/")
572 (string-match "\\`[^/]+:.*\\'" ivy-text))
573 (string-match "\\`/" ivy-text)))
574 (let ((default-directory ivy--directory))
575 (minibuffer-complete)
576 (setq ivy-text (ivy--input))
577 (when (file-directory-p
578 (expand-file-name ivy-text ivy--directory))
579 (ivy--cd (file-name-as-directory
580 (expand-file-name ivy-text ivy--directory)))))
581 (or (ivy-partial)
582 (when (or (eq this-command last-command)
583 (eq ivy--length 1))
584 (ivy-alt-done)))))
585
586 (defun ivy-partial ()
587 "Complete the minibuffer text as much as possible."
588 (interactive)
589 (let* ((parts (or (split-string ivy-text " " t) (list "")))
590 (postfix (car (last parts)))
591 (completion-ignore-case t)
592 (startp (string-match "^\\^" postfix))
593 (new (try-completion (if startp
594 (substring postfix 1)
595 postfix)
596 (mapcar (lambda (str)
597 (let ((i (string-match postfix str)))
598 (when i
599 (substring str i))))
600 ivy--old-cands))))
601 (cond ((eq new t) nil)
602 ((string= new ivy-text) nil)
603 (new
604 (delete-region (minibuffer-prompt-end) (point-max))
605 (setcar (last parts)
606 (if startp
607 (concat "^" new)
608 new))
609 (insert (mapconcat #'identity parts " ")
610 (if ivy-tab-space " " ""))
611 t))))
612
613 (defun ivy-immediate-done ()
614 "Exit the minibuffer with the current input."
615 (interactive)
616 (delete-minibuffer-contents)
617 (insert (setq ivy--current
618 (if ivy--directory
619 (expand-file-name ivy-text ivy--directory)
620 ivy-text)))
621 (setq ivy-exit 'done)
622 (exit-minibuffer))
623
624 ;;;###autoload
625 (defun ivy-resume ()
626 "Resume the last completion session."
627 (interactive)
628 (when (eq (ivy-state-caller ivy-last) 'swiper)
629 (switch-to-buffer (ivy-state-buffer ivy-last)))
630 (with-current-buffer (ivy-state-buffer ivy-last)
631 (ivy-read
632 (ivy-state-prompt ivy-last)
633 (ivy-state-collection ivy-last)
634 :predicate (ivy-state-predicate ivy-last)
635 :require-match (ivy-state-require-match ivy-last)
636 :initial-input ivy-text
637 :history (ivy-state-history ivy-last)
638 :preselect (unless (eq (ivy-state-collection ivy-last)
639 'read-file-name-internal)
640 ivy--current)
641 :keymap (ivy-state-keymap ivy-last)
642 :update-fn (ivy-state-update-fn ivy-last)
643 :sort (ivy-state-sort ivy-last)
644 :action (ivy-state-action ivy-last)
645 :unwind (ivy-state-unwind ivy-last)
646 :re-builder (ivy-state-re-builder ivy-last)
647 :matcher (ivy-state-matcher ivy-last)
648 :dynamic-collection (ivy-state-dynamic-collection ivy-last)
649 :caller (ivy-state-caller ivy-last))))
650
651 (defvar ivy-calling nil
652 "When non-nil, call the current action when `ivy--index' changes.")
653
654 (defun ivy-set-index (index)
655 "Set `ivy--index' to INDEX."
656 (setq ivy--index index)
657 (when ivy-calling
658 (ivy--exhibit)
659 (ivy-call)))
660
661 (defun ivy-beginning-of-buffer ()
662 "Select the first completion candidate."
663 (interactive)
664 (ivy-set-index 0))
665
666 (defun ivy-end-of-buffer ()
667 "Select the last completion candidate."
668 (interactive)
669 (ivy-set-index (1- ivy--length)))
670
671 (defun ivy-scroll-up-command ()
672 "Scroll the candidates upward by the minibuffer height."
673 (interactive)
674 (ivy-set-index (min (1- (+ ivy--index ivy-height))
675 (1- ivy--length))))
676
677 (defun ivy-scroll-down-command ()
678 "Scroll the candidates downward by the minibuffer height."
679 (interactive)
680 (ivy-set-index (max (1+ (- ivy--index ivy-height))
681 0)))
682
683 (defun ivy-minibuffer-grow ()
684 "Grow the minibuffer window by 1 line."
685 (interactive)
686 (setq-local max-mini-window-height
687 (cl-incf ivy-height)))
688
689 (defun ivy-minibuffer-shrink ()
690 "Shrink the minibuffer window by 1 line."
691 (interactive)
692 (unless (<= ivy-height 2)
693 (setq-local max-mini-window-height
694 (cl-decf ivy-height))
695 (window-resize (selected-window) -1)))
696
697 (defun ivy-next-line (&optional arg)
698 "Move cursor vertically down ARG candidates."
699 (interactive "p")
700 (setq arg (or arg 1))
701 (let ((index (+ ivy--index arg)))
702 (if (> index (1- ivy--length))
703 (if ivy-wrap
704 (ivy-beginning-of-buffer)
705 (ivy-set-index (1- ivy--length)))
706 (ivy-set-index index))))
707
708 (defun ivy-next-line-or-history (&optional arg)
709 "Move cursor vertically down ARG candidates.
710 If the input is empty, select the previous history element instead."
711 (interactive "p")
712 (when (string= ivy-text "")
713 (ivy-previous-history-element 1))
714 (ivy-next-line arg))
715
716 (defun ivy-previous-line (&optional arg)
717 "Move cursor vertically up ARG candidates."
718 (interactive "p")
719 (setq arg (or arg 1))
720 (let ((index (- ivy--index arg)))
721 (if (< index 0)
722 (if ivy-wrap
723 (ivy-end-of-buffer)
724 (ivy-set-index 0))
725 (ivy-set-index index))))
726
727 (defun ivy-previous-line-or-history (arg)
728 "Move cursor vertically up ARG candidates.
729 If the input is empty, select the previous history element instead."
730 (interactive "p")
731 (when (string= ivy-text "")
732 (ivy-previous-history-element 1))
733 (ivy-previous-line arg))
734
735 (defun ivy-toggle-calling ()
736 "Flip `ivy-calling'."
737 (interactive)
738 (when (setq ivy-calling (not ivy-calling))
739 (ivy-call)))
740
741 (defun ivy-toggle-ignore ()
742 "Toggle user-configured candidate filtering."
743 (interactive)
744 (setq ivy-use-ignore (null ivy-use-ignore))
745 ;; invalidate cache
746 (setq ivy--old-cands nil))
747
748 (defun ivy--get-action (state)
749 "Get the action function from STATE."
750 (let ((action (ivy-state-action state)))
751 (when action
752 (if (functionp action)
753 action
754 (cadr (nth (car action) action))))))
755
756 (defun ivy--get-window (state)
757 "Get the window from STATE."
758 (if (ivy-state-p state)
759 (let ((window (ivy-state-window state)))
760 (if (window-live-p window)
761 window
762 (if (= (length (window-list)) 1)
763 (selected-window)
764 (next-window))))
765 (selected-window)))
766
767 (defun ivy--actionp (x)
768 "Return non-nil when X is a list of actions."
769 (and x (listp x) (not (eq (car x) 'closure))))
770
771 (defun ivy-next-action ()
772 "When the current action is a list, scroll it forwards."
773 (interactive)
774 (let ((action (ivy-state-action ivy-last)))
775 (when (ivy--actionp action)
776 (unless (>= (car action) (1- (length action)))
777 (cl-incf (car action))))))
778
779 (defun ivy-prev-action ()
780 "When the current action is a list, scroll it backwards."
781 (interactive)
782 (let ((action (ivy-state-action ivy-last)))
783 (when (ivy--actionp action)
784 (unless (<= (car action) 1)
785 (cl-decf (car action))))))
786
787 (defun ivy-action-name ()
788 "Return the name associated with the current action."
789 (let ((action (ivy-state-action ivy-last)))
790 (if (ivy--actionp action)
791 (format "[%d/%d] %s"
792 (car action)
793 (1- (length action))
794 (nth 2 (nth (car action) action)))
795 "[1/1] default")))
796
797 (defvar ivy-inhibit-action nil
798 "When non-nil, `ivy-call' does nothing.
799
800 Example use:
801
802 (let* ((ivy-inhibit-action t)
803 (str (counsel-locate \"lispy.el\")))
804 ;; do whatever with str - the corresponding file will not be opened
805 )")
806
807 (defun ivy-call ()
808 "Call the current action without exiting completion."
809 (interactive)
810 (unless ivy-inhibit-action
811 (let ((action (ivy--get-action ivy-last)))
812 (when action
813 (let* ((collection (ivy-state-collection ivy-last))
814 (x (if (and (consp collection)
815 (consp (car collection)))
816 (cdr (assoc ivy--current collection))
817 (if (equal ivy--current "")
818 ivy-text
819 ivy--current))))
820 (prog1 (funcall action x)
821 (unless (or (eq ivy-exit 'done)
822 (equal (selected-window)
823 (active-minibuffer-window))
824 (null (active-minibuffer-window)))
825 (select-window (active-minibuffer-window)))))))))
826
827 (defun ivy-next-line-and-call (&optional arg)
828 "Move cursor vertically down ARG candidates.
829 Call the permanent action if possible."
830 (interactive "p")
831 (ivy-next-line arg)
832 (ivy--exhibit)
833 (ivy-call))
834
835 (defun ivy-previous-line-and-call (&optional arg)
836 "Move cursor vertically down ARG candidates.
837 Call the permanent action if possible."
838 (interactive "p")
839 (ivy-previous-line arg)
840 (ivy--exhibit)
841 (ivy-call))
842
843 (defun ivy-previous-history-element (arg)
844 "Forward to `previous-history-element' with ARG."
845 (interactive "p")
846 (previous-history-element arg)
847 (ivy--cd-maybe)
848 (move-end-of-line 1)
849 (ivy--maybe-scroll-history))
850
851 (defun ivy-next-history-element (arg)
852 "Forward to `next-history-element' with ARG."
853 (interactive "p")
854 (if (and (= minibuffer-history-position 0)
855 (equal ivy-text ""))
856 (progn
857 (insert ivy--default)
858 (when (and (with-ivy-window (derived-mode-p 'prog-mode))
859 (> (point) (minibuffer-prompt-end)))
860 (undo-boundary)
861 (insert "\\_>")
862 (goto-char (minibuffer-prompt-end))
863 (insert "\\_<")
864 (forward-char (+ 2 (length ivy--default)))))
865 (next-history-element arg))
866 (ivy--cd-maybe)
867 (move-end-of-line 1)
868 (ivy--maybe-scroll-history))
869
870 (defvar ivy-ffap-url-functions nil
871 "List of functions that check if the point is on a URL.")
872
873 (defun ivy--cd-maybe ()
874 "Check if the current input points to a different directory.
875 If so, move to that directory, while keeping only the file name."
876 (when ivy--directory
877 (let ((input (ivy--input))
878 url)
879 (if (setq url (or (ffap-url-p input)
880 (with-ivy-window
881 (cl-reduce
882 (lambda (a b)
883 (or a (funcall b)))
884 ivy-ffap-url-functions
885 :initial-value nil))))
886 (ivy-exit-with-action
887 (lambda (_)
888 (funcall ffap-url-fetcher url)))
889 (setq input (expand-file-name input))
890 (let ((file (file-name-nondirectory input))
891 (dir (expand-file-name (file-name-directory input))))
892 (if (string= dir ivy--directory)
893 (progn
894 (delete-minibuffer-contents)
895 (insert file))
896 (ivy--cd dir)
897 (insert file)))))))
898
899 (defun ivy--maybe-scroll-history ()
900 "If the selected history element has an index, scroll there."
901 (let ((idx (ignore-errors
902 (get-text-property
903 (minibuffer-prompt-end)
904 'ivy-index))))
905 (when idx
906 (ivy--exhibit)
907 (setq ivy--index idx))))
908
909 (defun ivy--cd (dir)
910 "When completing file names, move to directory DIR."
911 (if (null ivy--directory)
912 (error "Unexpected")
913 (setq ivy--old-cands nil)
914 (setq ivy--old-re nil)
915 (setq ivy--index 0)
916 (setq ivy--all-candidates
917 (ivy--sorted-files (setq ivy--directory dir)))
918 (setq ivy-text "")
919 (delete-minibuffer-contents)))
920
921 (defun ivy-backward-delete-char ()
922 "Forward to `backward-delete-char'.
923 On error (read-only), call `ivy-on-del-error-function'."
924 (interactive)
925 (if (and ivy--directory (= (minibuffer-prompt-end) (point)))
926 (progn
927 (ivy--cd (file-name-directory
928 (directory-file-name
929 (expand-file-name
930 ivy--directory))))
931 (ivy--exhibit))
932 (condition-case nil
933 (backward-delete-char 1)
934 (error
935 (when ivy-on-del-error-function
936 (funcall ivy-on-del-error-function))))))
937
938 (defun ivy-delete-char (arg)
939 "Forward to `delete-char' ARG."
940 (interactive "p")
941 (unless (= (point) (line-end-position))
942 (delete-char arg)))
943
944 (defun ivy-forward-char (arg)
945 "Forward to `forward-char' ARG."
946 (interactive "p")
947 (unless (= (point) (line-end-position))
948 (forward-char arg)))
949
950 (defun ivy-kill-word (arg)
951 "Forward to `kill-word' ARG."
952 (interactive "p")
953 (unless (= (point) (line-end-position))
954 (kill-word arg)))
955
956 (defun ivy-kill-line ()
957 "Forward to `kill-line'."
958 (interactive)
959 (if (eolp)
960 (kill-region (minibuffer-prompt-end) (point))
961 (kill-line)))
962
963 (defun ivy-backward-kill-word ()
964 "Forward to `backward-kill-word'."
965 (interactive)
966 (if (and ivy--directory (= (minibuffer-prompt-end) (point)))
967 (progn
968 (ivy--cd (file-name-directory
969 (directory-file-name
970 (expand-file-name
971 ivy--directory))))
972 (ivy--exhibit))
973 (ignore-errors
974 (let ((pt (point)))
975 (forward-word -1)
976 (delete-region (point) pt)))))
977
978 (defvar ivy--regexp-quote 'regexp-quote
979 "Store the regexp quoting state.")
980
981 (defun ivy-toggle-regexp-quote ()
982 "Toggle the regexp quoting."
983 (interactive)
984 (setq ivy--old-re nil)
985 (cl-rotatef ivy--regex-function ivy--regexp-quote))
986
987 (defvar avy-all-windows)
988 (defvar avy-action)
989 (defvar avy-keys)
990 (defvar avy-keys-alist)
991 (defvar avy-style)
992 (defvar avy-styles-alist)
993 (declare-function avy--process "ext:avy")
994 (declare-function avy--style-fn "ext:avy")
995
996 (eval-after-load 'avy
997 '(add-to-list 'avy-styles-alist '(ivy-avy . pre)))
998
999 (defun ivy-avy ()
1000 "Jump to one of the current ivy candidates."
1001 (interactive)
1002 (unless (require 'avy nil 'noerror)
1003 (error "Package avy isn't installed"))
1004 (let* ((avy-all-windows nil)
1005 (avy-keys (or (cdr (assq 'ivy-avy avy-keys-alist))
1006 avy-keys))
1007 (avy-style (or (cdr (assq 'ivy-avy
1008 avy-styles-alist))
1009 avy-style))
1010 (candidate
1011 (let ((candidates))
1012 (save-excursion
1013 (save-restriction
1014 (narrow-to-region
1015 (window-start)
1016 (window-end))
1017 (goto-char (point-min))
1018 (forward-line)
1019 (while (< (point) (point-max))
1020 (push
1021 (cons (point)
1022 (selected-window))
1023 candidates)
1024 (forward-line))))
1025 (setq avy-action #'identity)
1026 (avy--process
1027 (nreverse candidates)
1028 (avy--style-fn avy-style)))))
1029 (ivy-set-index (- (line-number-at-pos candidate) 2))
1030 (ivy--exhibit)
1031 (ivy-done)))
1032
1033 (defun ivy-sort-file-function-default (x y)
1034 "Compare two files X and Y.
1035 Prioritize directories."
1036 (if (get-text-property 0 'dirp x)
1037 (if (get-text-property 0 'dirp y)
1038 (string< x y)
1039 t)
1040 (if (get-text-property 0 'dirp y)
1041 nil
1042 (string< x y))))
1043
1044 (defcustom ivy-sort-functions-alist
1045 '((read-file-name-internal . ivy-sort-file-function-default)
1046 (internal-complete-buffer . nil)
1047 (counsel-git-grep-function . nil)
1048 (Man-goto-section . nil)
1049 (org-refile . nil)
1050 (t . string-lessp))
1051 "An alist of sorting functions for each collection function.
1052 Interactive functions that call completion fit in here as well.
1053
1054 Nil means no sorting, which is useful to turn off the sorting for
1055 functions that have candidates in the natural buffer order, like
1056 `org-refile' or `Man-goto-section'.
1057
1058 The entry associated with t is used for all fall-through cases.
1059
1060 See also `ivy-sort-max-size'."
1061 :type
1062 '(alist
1063 :key-type (choice
1064 (const :tag "All other functions" t)
1065 (symbol :tag "Function"))
1066 :value-type (choice
1067 (const :tag "plain sort" string-lessp)
1068 (const :tag "file sort" ivy-sort-file-function-default)
1069 (const :tag "no sort" nil)))
1070 :group 'ivy)
1071
1072 (defvar ivy-index-functions-alist
1073 '((swiper . ivy-recompute-index-swiper)
1074 (swiper-multi . ivy-recompute-index-swiper)
1075 (counsel-git-grep . ivy-recompute-index-swiper)
1076 (counsel-grep . ivy-recompute-index-swiper-async)
1077 (t . ivy-recompute-index-zero))
1078 "An alist of index recomputing functions for each collection function.
1079 When the input changes, the appropriate function returns an
1080 integer - the index of the matched candidate that should be
1081 selected.")
1082
1083 (defvar ivy-re-builders-alist
1084 '((t . ivy--regex-plus))
1085 "An alist of regex building functions for each collection function.
1086
1087 Each key is (in order of priority):
1088 1. The actual collection function, e.g. `read-file-name-internal'.
1089 2. The symbol passed by :caller into `ivy-read'.
1090 3. `this-command'.
1091 4. t.
1092
1093 Each value is a function that should take a string and return a
1094 valid regex or a regex sequence (see below).
1095
1096 Possible choices: `ivy--regex', `regexp-quote',
1097 `ivy--regex-plus', `ivy--regex-fuzzy'.
1098
1099 If a function returns a list, it should format like this:
1100 '((\"matching-regexp\" . t) (\"non-matching-regexp\") ...).
1101
1102 The matches will be filtered in a sequence, you can mix the
1103 regexps that should match and that should not match as you
1104 like.")
1105
1106 (defvar ivy-initial-inputs-alist
1107 '((org-refile . "^")
1108 (org-agenda-refile . "^")
1109 (org-capture-refile . "^")
1110 (counsel-M-x . "^")
1111 (counsel-describe-function . "^")
1112 (counsel-describe-variable . "^")
1113 (man . "^")
1114 (woman . "^"))
1115 "Command to initial input table.")
1116
1117 (defcustom ivy-sort-max-size 30000
1118 "Sorting won't be done for collections larger than this."
1119 :type 'integer)
1120
1121 (defun ivy--sorted-files (dir)
1122 "Return the list of files in DIR.
1123 Directories come first."
1124 (let* ((default-directory dir)
1125 (seq (all-completions "" 'read-file-name-internal))
1126 sort-fn)
1127 (if (equal dir "/")
1128 seq
1129 (setq seq (delete "./" (delete "../" seq)))
1130 (when (eq (setq sort-fn (cdr (assoc 'read-file-name-internal
1131 ivy-sort-functions-alist)))
1132 #'ivy-sort-file-function-default)
1133 (setq seq (mapcar (lambda (x)
1134 (propertize x 'dirp (string-match-p "/\\'" x)))
1135 seq)))
1136 (when sort-fn
1137 (setq seq (cl-sort seq sort-fn)))
1138 (dolist (dir ivy-extra-directories)
1139 (push dir seq))
1140 seq)))
1141
1142 (defvar ivy-recursive-restore t
1143 "When non-nil, restore the above state when exiting the minibuffer.
1144 This variable is let-bound to nil by functions that take care of
1145 the restoring themselves.")
1146
1147 ;;** Entry Point
1148 (cl-defun ivy-read (prompt collection
1149 &key
1150 predicate require-match initial-input
1151 history preselect keymap update-fn sort
1152 action unwind re-builder matcher dynamic-collection caller)
1153 "Read a string in the minibuffer, with completion.
1154
1155 PROMPT is a format string, normally ending in a colon and a
1156 space; %d anywhere in the string is replaced by the current
1157 number of matching candidates. For the literal % character,
1158 escape it with %%. See also `ivy-count-format'.
1159
1160 COLLECTION is either a list of strings, a function, an alist, or
1161 a hash table.
1162
1163 If INITIAL-INPUT is not nil, then insert that input in the
1164 minibuffer initially.
1165
1166 KEYMAP is composed with `ivy-minibuffer-map'.
1167
1168 If PRESELECT is not nil, then select the corresponding candidate
1169 out of the ones that match the INITIAL-INPUT.
1170
1171 UPDATE-FN is called each time the current candidate(s) is changed.
1172
1173 When SORT is t, use `ivy-sort-functions-alist' for sorting.
1174
1175 ACTION is a lambda function to call after selecting a result. It
1176 takes a single string argument.
1177
1178 UNWIND is a lambda function to call before exiting.
1179
1180 RE-BUILDER is a lambda function to call to transform text into a
1181 regex pattern.
1182
1183 MATCHER is to override matching.
1184
1185 DYNAMIC-COLLECTION is a boolean to specify if the list of
1186 candidates is updated after each input by calling COLLECTION.
1187
1188 CALLER is a symbol to uniquely identify the caller to `ivy-read'.
1189 It is used, along with COLLECTION, to determine which
1190 customizations apply to the current completion session."
1191 (let ((extra-actions (append (plist-get ivy--actions-list t)
1192 (plist-get ivy--actions-list this-command))))
1193 (when extra-actions
1194 (setq action
1195 (cond ((functionp action)
1196 `(1
1197 ("o" ,action "default")
1198 ,@extra-actions))
1199 ((null action)
1200 (cons 1 extra-actions))
1201 (t
1202 (delete-dups (append action extra-actions)))))))
1203 (let ((extra-sources (plist-get ivy--sources-list caller)))
1204 (if extra-sources
1205 (progn
1206 (setq ivy--extra-candidates nil)
1207 (dolist (source extra-sources)
1208 (cond ((equal source '(original-source))
1209 (setq ivy--extra-candidates
1210 (cons source ivy--extra-candidates)))
1211 ((null (cdr source))
1212 (setq ivy--extra-candidates
1213 (cons
1214 (list (car source) (funcall (car source)))
1215 ivy--extra-candidates))))))
1216 (setq ivy--extra-candidates '((original-source)))))
1217 (let ((recursive-ivy-last (and (active-minibuffer-window) ivy-last)))
1218 (setq ivy-last
1219 (make-ivy-state
1220 :prompt prompt
1221 :collection collection
1222 :predicate predicate
1223 :require-match require-match
1224 :initial-input initial-input
1225 :history history
1226 :preselect preselect
1227 :keymap keymap
1228 :update-fn update-fn
1229 :sort sort
1230 :action action
1231 :window (selected-window)
1232 :buffer (current-buffer)
1233 :unwind unwind
1234 :re-builder re-builder
1235 :matcher matcher
1236 :dynamic-collection dynamic-collection
1237 :caller caller))
1238 (ivy--reset-state ivy-last)
1239 (prog1
1240 (unwind-protect
1241 (minibuffer-with-setup-hook
1242 #'ivy--minibuffer-setup
1243 (let* ((hist (or history 'ivy-history))
1244 (minibuffer-completion-table collection)
1245 (minibuffer-completion-predicate predicate)
1246 (resize-mini-windows (cond
1247 ((display-graphic-p) nil)
1248 ((null resize-mini-windows) 'grow-only)
1249 (t resize-mini-windows))))
1250 (read-from-minibuffer
1251 prompt
1252 (ivy-state-initial-input ivy-last)
1253 (make-composed-keymap keymap ivy-minibuffer-map)
1254 nil
1255 hist)
1256 (when (eq ivy-exit 'done)
1257 (let ((item (if ivy--directory
1258 ivy--current
1259 ivy-text)))
1260 (unless (equal item "")
1261 (set hist (cons (propertize item 'ivy-index ivy--index)
1262 (delete item
1263 (cdr (symbol-value hist))))))))
1264 ivy--current))
1265 (remove-hook 'post-command-hook #'ivy--exhibit)
1266 (when (setq unwind (ivy-state-unwind ivy-last))
1267 (funcall unwind))
1268 (unless (eq ivy-exit 'done)
1269 (when recursive-ivy-last
1270 (ivy--reset-state (setq ivy-last recursive-ivy-last)))))
1271 (ivy-call)
1272 (when (and recursive-ivy-last
1273 ivy-recursive-restore)
1274 (ivy--reset-state (setq ivy-last recursive-ivy-last))))))
1275
1276 (defun ivy--reset-state (state)
1277 "Reset the ivy to STATE.
1278 This is useful for recursive `ivy-read'."
1279 (let ((prompt (or (ivy-state-prompt state) ""))
1280 (collection (ivy-state-collection state))
1281 (predicate (ivy-state-predicate state))
1282 (history (ivy-state-history state))
1283 (preselect (ivy-state-preselect state))
1284 (sort (ivy-state-sort state))
1285 (re-builder (ivy-state-re-builder state))
1286 (dynamic-collection (ivy-state-dynamic-collection state))
1287 (initial-input (ivy-state-initial-input state))
1288 (require-match (ivy-state-require-match state))
1289 (caller (ivy-state-caller state)))
1290 (unless initial-input
1291 (setq initial-input (cdr (assoc this-command
1292 ivy-initial-inputs-alist))))
1293 (setq ivy--directory nil)
1294 (setq ivy-case-fold-search 'auto)
1295 (setq ivy--regex-function
1296 (or re-builder
1297 (and (functionp collection)
1298 (cdr (assoc collection ivy-re-builders-alist)))
1299 (and caller
1300 (cdr (assoc caller ivy-re-builders-alist)))
1301 (cdr (assoc this-command ivy-re-builders-alist))
1302 (cdr (assoc t ivy-re-builders-alist))
1303 'ivy--regex))
1304 (setq ivy--subexps 0)
1305 (setq ivy--regexp-quote 'regexp-quote)
1306 (setq ivy--old-text "")
1307 (setq ivy--full-length nil)
1308 (setq ivy-text "")
1309 (setq ivy-calling nil)
1310 (setq ivy-use-ignore t)
1311 (let (coll sort-fn)
1312 (cond ((eq collection 'Info-read-node-name-1)
1313 (if (equal Info-current-file "dir")
1314 (setq coll
1315 (mapcar (lambda (x) (format "(%s)" x))
1316 (cl-delete-duplicates
1317 (all-completions "(" collection predicate)
1318 :test #'equal)))
1319 (setq coll (all-completions "" collection predicate))))
1320 ((eq collection 'read-file-name-internal)
1321 (setq ivy--directory default-directory)
1322 (require 'dired)
1323 (when preselect
1324 (let ((preselect-directory (file-name-directory preselect)))
1325 (unless (or (null preselect-directory)
1326 (string= preselect-directory
1327 default-directory))
1328 (setq ivy--directory preselect-directory))
1329 (setf
1330 (ivy-state-preselect state)
1331 (setq preselect (file-name-nondirectory preselect)))))
1332 (setq coll (ivy--sorted-files ivy--directory))
1333 (when initial-input
1334 (unless (or require-match
1335 (equal initial-input default-directory)
1336 (equal initial-input ""))
1337 (setq coll (cons initial-input coll)))
1338 (unless (ivy-state-action ivy-last)
1339 (setq initial-input nil))))
1340 ((eq collection 'internal-complete-buffer)
1341 (setq coll (ivy--buffer-list "" ivy-use-virtual-buffers)))
1342 (dynamic-collection
1343 (setq coll (funcall collection ivy-text)))
1344 ((or (functionp collection)
1345 (byte-code-function-p collection)
1346 (vectorp collection)
1347 (and (consp collection) (listp (car collection)))
1348 (hash-table-p collection)
1349 (and (listp collection) (symbolp (car collection))))
1350 (setq coll (all-completions "" collection predicate)))
1351 (t
1352 (setq coll collection)))
1353 (when sort
1354 (if (and (functionp collection)
1355 (setq sort-fn (assoc collection ivy-sort-functions-alist)))
1356 (when (and (setq sort-fn (cdr sort-fn))
1357 (not (eq collection 'read-file-name-internal)))
1358 (setq coll (cl-sort coll sort-fn)))
1359 (unless (eq history 'org-refile-history)
1360 (if (and (setq sort-fn (cdr (assoc t ivy-sort-functions-alist)))
1361 (<= (length coll) ivy-sort-max-size))
1362 (setq coll (cl-sort (copy-sequence coll) sort-fn))))))
1363 (when preselect
1364 (unless (or (and require-match
1365 (not (eq collection 'internal-complete-buffer)))
1366 dynamic-collection
1367 (let ((re (regexp-quote preselect)))
1368 (cl-find-if (lambda (x) (string-match re x))
1369 coll)))
1370 (setq coll (cons preselect coll))))
1371 (setq ivy--old-re nil)
1372 (setq ivy--old-cands nil)
1373 (when (integerp preselect)
1374 (setq ivy--old-re "")
1375 (setq ivy--index preselect))
1376 (when initial-input
1377 ;; Needed for anchor to work
1378 (setq ivy--old-cands coll)
1379 (setq ivy--old-cands (ivy--filter initial-input coll)))
1380 (setq ivy--all-candidates coll)
1381 (unless (integerp preselect)
1382 (setq ivy--index (or
1383 (and dynamic-collection
1384 ivy--index)
1385 (and preselect
1386 (ivy--preselect-index
1387 preselect
1388 (if initial-input
1389 ivy--old-cands
1390 coll)))
1391 0))))
1392 (setq ivy-exit nil)
1393 (setq ivy--default
1394 (if (region-active-p)
1395 (buffer-substring
1396 (region-beginning)
1397 (region-end))
1398 (or
1399 (thing-at-point 'url)
1400 (thing-at-point 'symbol)
1401 "")))
1402 (setq ivy--prompt
1403 (cond ((string-match "%.*d" prompt)
1404 prompt)
1405 ((null ivy-count-format)
1406 (error
1407 "`ivy-count-format' can't be nil. Set it to an empty string instead"))
1408 ((string-match "%d.*%d" ivy-count-format)
1409 (let ((w (length (number-to-string
1410 (length ivy--all-candidates))))
1411 (s (copy-sequence ivy-count-format)))
1412 (string-match "%d" s)
1413 (match-end 0)
1414 (string-match "%d" s (match-end 0))
1415 (setq s (replace-match (format "%%-%dd" w) nil nil s))
1416 (string-match "%d" s)
1417 (concat (replace-match (format "%%%dd" w) nil nil s)
1418 prompt)))
1419 ((string-match "%.*d" ivy-count-format)
1420 (concat ivy-count-format prompt))
1421 (ivy--directory
1422 prompt)
1423 (t
1424 nil)))
1425 (setf (ivy-state-initial-input ivy-last) initial-input)))
1426
1427 ;;;###autoload
1428 (defun ivy-completing-read (prompt collection
1429 &optional predicate require-match initial-input
1430 history def inherit-input-method)
1431 "Read a string in the minibuffer, with completion.
1432
1433 This interface conforms to `completing-read' and can be used for
1434 `completing-read-function'.
1435
1436 PROMPT is a string to prompt with; normally it ends in a colon and a space.
1437 COLLECTION can be a list of strings, an alist, an obarray or a hash table.
1438 PREDICATE limits completion to a subset of COLLECTION.
1439 REQUIRE-MATCH is specified with a boolean value. See `completing-read'.
1440 INITIAL-INPUT is a string that can be inserted into the minibuffer initially.
1441 HISTORY is a list of previously selected inputs.
1442 DEF is the default value.
1443 INHERIT-INPUT-METHOD is currently ignored."
1444 (if (memq this-command '(tmm-menubar tmm-shortcut))
1445 (completing-read-default prompt collection
1446 predicate require-match
1447 initial-input history
1448 def inherit-input-method)
1449 ;; See the doc of `completing-read'.
1450 (when (consp history)
1451 (when (numberp (cdr history))
1452 (setq initial-input (nth (1- (cdr history))
1453 (symbol-value (car history)))))
1454 (setq history (car history)))
1455 (ivy-read (replace-regexp-in-string "%" "%%" prompt)
1456 collection
1457 :predicate predicate
1458 :require-match require-match
1459 :initial-input (if (consp initial-input)
1460 (car initial-input)
1461 (if (and (stringp initial-input)
1462 (string-match "\\+" initial-input))
1463 (replace-regexp-in-string
1464 "\\+" "\\\\+" initial-input)
1465 initial-input))
1466 :preselect (if (listp def) (car def) def)
1467 :history history
1468 :keymap nil
1469 :sort
1470 (let ((sort (assoc this-command ivy-sort-functions-alist)))
1471 (if sort
1472 (cdr sort)
1473 t)))))
1474
1475 (defvar ivy-completion-beg nil
1476 "Completion bounds start.")
1477
1478 (defvar ivy-completion-end nil
1479 "Completion bounds end.")
1480
1481 (defun ivy-completion-in-region-action (str)
1482 "Insert STR, erasing the previous one.
1483 The previous string is between `ivy-completion-beg' and `ivy-completion-end'."
1484 (when (stringp str)
1485 (with-ivy-window
1486 (when ivy-completion-beg
1487 (delete-region
1488 ivy-completion-beg
1489 ivy-completion-end))
1490 (setq ivy-completion-beg
1491 (move-marker (make-marker) (point)))
1492 (insert str)
1493 (setq ivy-completion-end
1494 (move-marker (make-marker) (point))))))
1495
1496 (defun ivy-completion-common-length (str)
1497 "Return the length of the first 'completions-common-part face in STR."
1498 (let ((pos 0)
1499 (len (length str)))
1500 (while (and (<= pos len)
1501 (let ((prop (get-text-property pos 'face str)))
1502 (not (eq 'completions-common-part
1503 (if (listp prop) (car prop) prop)))))
1504 (setq pos (1+ pos)))
1505 (if (< pos len)
1506 (or (next-single-property-change pos 'face str) len)
1507 0)))
1508
1509 (defun ivy-completion-in-region (start end collection &optional predicate)
1510 "An Ivy function suitable for `completion-in-region-function'."
1511 (let* ((enable-recursive-minibuffers t)
1512 (str (buffer-substring-no-properties start end))
1513 (comps
1514 (completion-all-completions str collection predicate (- end start))))
1515 (if (null comps)
1516 (message "No matches")
1517 (nconc comps nil)
1518 (setq ivy-completion-beg (- end (ivy-completion-common-length (car comps))))
1519 (setq ivy-completion-end end)
1520 (if (null (cdr comps))
1521 (if (string= str (car comps))
1522 (message "Sole match")
1523 (setf (ivy-state-window ivy-last) (selected-window))
1524 (ivy-completion-in-region-action
1525 (substring-no-properties
1526 (car comps))))
1527 (let* ((w (1+ (floor (log (length comps) 10))))
1528 (ivy-count-format (if (string= ivy-count-format "")
1529 ivy-count-format
1530 (format "%%-%dd " w)))
1531 (prompt (format "(%s): " str)))
1532 (and
1533 (ivy-read (if (string= ivy-count-format "")
1534 prompt
1535 (replace-regexp-in-string "%" "%%" prompt))
1536 ;; remove 'completions-first-difference face
1537 (mapcar #'substring-no-properties comps)
1538 :predicate predicate
1539 :action #'ivy-completion-in-region-action
1540 :require-match t)
1541 t))))))
1542
1543 (defcustom ivy-do-completion-in-region t
1544 "When non-nil `ivy-mode' will set `completion-in-region-function'."
1545 :type 'boolean)
1546
1547 ;;;###autoload
1548 (define-minor-mode ivy-mode
1549 "Toggle Ivy mode on or off.
1550 Turn Ivy mode on if ARG is positive, off otherwise.
1551 Turning on Ivy mode sets `completing-read-function' to
1552 `ivy-completing-read'.
1553
1554 Global bindings:
1555 \\{ivy-mode-map}
1556
1557 Minibuffer bindings:
1558 \\{ivy-minibuffer-map}"
1559 :group 'ivy
1560 :global t
1561 :keymap ivy-mode-map
1562 :lighter " ivy"
1563 (if ivy-mode
1564 (progn
1565 (setq completing-read-function 'ivy-completing-read)
1566 (when ivy-do-completion-in-region
1567 (setq completion-in-region-function 'ivy-completion-in-region)))
1568 (setq completing-read-function 'completing-read-default)
1569 (setq completion-in-region-function 'completion--in-region)))
1570
1571 (defun ivy--preselect-index (preselect candidates)
1572 "Return the index of PRESELECT in CANDIDATES."
1573 (cond ((integerp preselect)
1574 preselect)
1575 ((cl-position preselect candidates :test #'equal))
1576 ((stringp preselect)
1577 (let ((re (regexp-quote preselect)))
1578 (cl-position-if
1579 (lambda (x)
1580 (string-match re x))
1581 candidates)))))
1582
1583 ;;* Implementation
1584 ;;** Regex
1585 (defvar ivy--regex-hash
1586 (make-hash-table :test #'equal)
1587 "Store pre-computed regex.")
1588
1589 (defun ivy--split (str)
1590 "Split STR into a list by single spaces.
1591 The remaining spaces stick to their left.
1592 This allows to \"quote\" N spaces by inputting N+1 spaces."
1593 (let ((len (length str))
1594 start0
1595 (start1 0)
1596 res s
1597 match-len)
1598 (while (and (string-match " +" str start1)
1599 (< start1 len))
1600 (setq match-len (- (match-end 0) (match-beginning 0)))
1601 (if (= match-len 1)
1602 (progn
1603 (when start0
1604 (setq start1 start0)
1605 (setq start0 nil))
1606 (push (substring str start1 (match-beginning 0)) res)
1607 (setq start1 (match-end 0)))
1608 (setq str (replace-match
1609 (make-string (1- match-len) ?\ )
1610 nil nil str))
1611 (setq start0 (or start0 start1))
1612 (setq start1 (1- (match-end 0)))))
1613 (if start0
1614 (push (substring str start0) res)
1615 (setq s (substring str start1))
1616 (unless (= (length s) 0)
1617 (push s res)))
1618 (nreverse res)))
1619
1620 (defun ivy--regex (str &optional greedy)
1621 "Re-build regex pattern from STR in case it has a space.
1622 When GREEDY is non-nil, join words in a greedy way."
1623 (let ((hashed (unless greedy
1624 (gethash str ivy--regex-hash))))
1625 (if hashed
1626 (prog1 (cdr hashed)
1627 (setq ivy--subexps (car hashed)))
1628 (when (string-match "\\([^\\]\\|^\\)\\\\$" str)
1629 (setq str (substring str 0 -1)))
1630 (cdr (puthash str
1631 (let ((subs (ivy--split str)))
1632 (if (= (length subs) 1)
1633 (cons
1634 (setq ivy--subexps 0)
1635 (car subs))
1636 (cons
1637 (setq ivy--subexps (length subs))
1638 (mapconcat
1639 (lambda (x)
1640 (if (string-match "\\`\\\\(.*\\\\)\\'" x)
1641 x
1642 (format "\\(%s\\)" x)))
1643 subs
1644 (if greedy
1645 ".*"
1646 ".*?")))))
1647 ivy--regex-hash)))))
1648
1649 (defun ivy--regex-ignore-order--part (str &optional discard)
1650 "Re-build regex from STR by splitting at spaces.
1651 Ignore the order of each group."
1652 (let* ((subs (split-string str " +" t))
1653 (len (length subs)))
1654 (cl-case len
1655 (0
1656 "")
1657 (t
1658 (mapcar (lambda (x) (cons x (not discard)))
1659 subs)))))
1660
1661 (defun ivy--regex-ignore-order (str)
1662 "Re-build regex from STR by splitting at spaces.
1663 Ignore the order of each group. Everything before \"!\" should
1664 match. Everything after \"!\" should not match."
1665 (let ((parts (split-string str "!" t)))
1666 (cl-case (length parts)
1667 (0
1668 "")
1669 (1
1670 (if (string= (substring str 0 1) "!")
1671 (list (cons "" t)
1672 (ivy--regex-ignore-order--part (car parts) t))
1673 (ivy--regex-ignore-order--part (car parts))))
1674 (2
1675 (append
1676 (ivy--regex-ignore-order--part (car parts))
1677 (ivy--regex-ignore-order--part (cadr parts) t)))
1678 (t (error "Unexpected: use only one !")))))
1679
1680 (defun ivy--regex-plus (str)
1681 "Build a regex sequence from STR.
1682 Spaces are wild card characters, everything before \"!\" should
1683 match. Everything after \"!\" should not match."
1684 (let ((parts (split-string str "!" t)))
1685 (cl-case (length parts)
1686 (0
1687 "")
1688 (1
1689 (if (string= (substring str 0 1) "!")
1690 (list (cons "" t)
1691 (list (ivy--regex (car parts))))
1692 (ivy--regex (car parts))))
1693 (2
1694 (cons
1695 (cons (ivy--regex (car parts)) t)
1696 (mapcar #'list (split-string (cadr parts) " " t))))
1697 (t (error "Unexpected: use only one !")))))
1698
1699 (defun ivy--regex-fuzzy (str)
1700 "Build a regex sequence from STR.
1701 Insert .* between each char."
1702 (if (string-match "\\`\\(\\^?\\)\\(.*?\\)\\(\\$?\\)\\'" str)
1703 (prog1
1704 (concat (match-string 1 str)
1705 (mapconcat
1706 (lambda (x)
1707 (format "\\(%c\\)" x))
1708 (string-to-list (match-string 2 str)) ".*")
1709 (match-string 3 str))
1710 (setq ivy--subexps (length (match-string 2 str))))
1711 str))
1712
1713 ;;** Rest
1714 (defun ivy--minibuffer-setup ()
1715 "Setup ivy completion in the minibuffer."
1716 (set (make-local-variable 'completion-show-inline-help) nil)
1717 (set (make-local-variable 'minibuffer-default-add-function)
1718 (lambda ()
1719 (list ivy--default)))
1720 (when (display-graphic-p)
1721 (setq truncate-lines t))
1722 (setq-local max-mini-window-height ivy-height)
1723 (add-hook 'post-command-hook #'ivy--exhibit nil t)
1724 ;; show completions with empty input
1725 (ivy--exhibit))
1726
1727 (defun ivy--input ()
1728 "Return the current minibuffer input."
1729 ;; assume one-line minibuffer input
1730 (buffer-substring-no-properties
1731 (minibuffer-prompt-end)
1732 (line-end-position)))
1733
1734 (defun ivy--cleanup ()
1735 "Delete the displayed completion candidates."
1736 (save-excursion
1737 (goto-char (minibuffer-prompt-end))
1738 (delete-region (line-end-position) (point-max))))
1739
1740 (defun ivy--insert-prompt ()
1741 "Update the prompt according to `ivy--prompt'."
1742 (when ivy--prompt
1743 (unless (memq this-command '(ivy-done ivy-alt-done ivy-partial-or-done
1744 counsel-find-symbol))
1745 (setq ivy--prompt-extra ""))
1746 (let (head tail)
1747 (if (string-match "\\(.*\\): \\'" ivy--prompt)
1748 (progn
1749 (setq head (match-string 1 ivy--prompt))
1750 (setq tail ": "))
1751 (setq head (substring ivy--prompt 0 -1))
1752 (setq tail " "))
1753 (let ((inhibit-read-only t)
1754 (std-props '(front-sticky t rear-nonsticky t field t read-only t))
1755 (n-str
1756 (concat
1757 (if (and (bound-and-true-p minibuffer-depth-indicate-mode)
1758 (> (minibuffer-depth) 1))
1759 (format "[%d] " (minibuffer-depth))
1760 "")
1761 (concat
1762 (if (string-match "%d.*%d" ivy-count-format)
1763 (format head
1764 (1+ ivy--index)
1765 (or (and (ivy-state-dynamic-collection ivy-last)
1766 ivy--full-length)
1767 ivy--length))
1768 (format head
1769 (or (and (ivy-state-dynamic-collection ivy-last)
1770 ivy--full-length)
1771 ivy--length)))
1772 ivy--prompt-extra
1773 tail)))
1774 (d-str (if ivy--directory
1775 (abbreviate-file-name ivy--directory)
1776 "")))
1777 (save-excursion
1778 (goto-char (point-min))
1779 (delete-region (point-min) (minibuffer-prompt-end))
1780 (if (> (+ (mod (+ (length n-str) (length d-str)) (window-width))
1781 (length ivy-text))
1782 (window-width))
1783 (setq n-str (concat n-str "\n" d-str))
1784 (setq n-str (concat n-str d-str)))
1785 (let ((regex (format "\\([^\n]\\{%d\\}\\)[^\n]" (window-width))))
1786 (while (string-match regex n-str)
1787 (setq n-str (replace-match (concat (match-string 1 n-str) "\n") nil t n-str 1))))
1788 (set-text-properties 0 (length n-str)
1789 `(face minibuffer-prompt ,@std-props)
1790 n-str)
1791 (ivy--set-match-props n-str "confirm"
1792 `(face ivy-confirm-face ,@std-props))
1793 (ivy--set-match-props n-str "match required"
1794 `(face ivy-match-required-face ,@std-props))
1795 (insert n-str))
1796 ;; get out of the prompt area
1797 (constrain-to-field nil (point-max))))))
1798
1799 (defun ivy--set-match-props (str match props)
1800 "Set STR text properties that match MATCH to PROPS."
1801 (when (string-match match str)
1802 (set-text-properties
1803 (match-beginning 0)
1804 (match-end 0)
1805 props
1806 str)))
1807
1808 (defvar inhibit-message)
1809
1810 (defun ivy--sort-maybe (collection)
1811 "Sort COLLECTION if needed."
1812 (let ((sort (ivy-state-sort ivy-last))
1813 entry)
1814 (if (null sort)
1815 collection
1816 (let ((sort-fn (cond ((functionp sort)
1817 sort)
1818 ((setq entry (assoc (ivy-state-collection ivy-last)
1819 ivy-sort-functions-alist))
1820 (cdr entry))
1821 (t
1822 (cdr (assoc t ivy-sort-functions-alist))))))
1823 (if (functionp sort-fn)
1824 (cl-sort (copy-sequence collection) sort-fn)
1825 collection)))))
1826
1827 (defun ivy--exhibit ()
1828 "Insert Ivy completions display.
1829 Should be run via minibuffer `post-command-hook'."
1830 (when (memq 'ivy--exhibit post-command-hook)
1831 (let ((inhibit-field-text-motion nil))
1832 (constrain-to-field nil (point-max)))
1833 (setq ivy-text (ivy--input))
1834 (if (ivy-state-dynamic-collection ivy-last)
1835 ;; while-no-input would cause annoying
1836 ;; "Waiting for process to die...done" message interruptions
1837 (let ((inhibit-message t))
1838 (unless (equal ivy--old-text ivy-text)
1839 (while-no-input
1840 (setq ivy--all-candidates
1841 (ivy--sort-maybe
1842 (funcall (ivy-state-collection ivy-last) ivy-text)))
1843 (setq ivy--old-text ivy-text)))
1844 (when ivy--all-candidates
1845 (ivy--insert-minibuffer
1846 (ivy--format ivy--all-candidates))))
1847 (cond (ivy--directory
1848 (if (string-match "/\\'" ivy-text)
1849 (if (member ivy-text ivy--all-candidates)
1850 (ivy--cd (expand-file-name ivy-text ivy--directory))
1851 (when (string-match "//\\'" ivy-text)
1852 (if (and default-directory
1853 (string-match "\\`[[:alpha:]]:/" default-directory))
1854 (ivy--cd (match-string 0 default-directory))
1855 (ivy--cd "/")))
1856 (when (string-match "[[:alpha:]]:/$" ivy-text)
1857 (let ((drive-root (match-string 0 ivy-text)))
1858 (when (file-exists-p drive-root)
1859 (ivy--cd drive-root)))))
1860 (if (string-match "\\`~\\'" ivy-text)
1861 (ivy--cd (expand-file-name "~/")))))
1862 ((eq (ivy-state-collection ivy-last) 'internal-complete-buffer)
1863 (when (or (and (string-match "\\` " ivy-text)
1864 (not (string-match "\\` " ivy--old-text)))
1865 (and (string-match "\\` " ivy--old-text)
1866 (not (string-match "\\` " ivy-text))))
1867 (setq ivy--all-candidates
1868 (if (and (> (length ivy-text) 0)
1869 (eq (aref ivy-text 0)
1870 ?\ ))
1871 (ivy--buffer-list " ")
1872 (ivy--buffer-list "" ivy-use-virtual-buffers)))
1873 (setq ivy--old-re nil))))
1874 (ivy--insert-minibuffer
1875 (with-current-buffer (ivy-state-buffer ivy-last)
1876 (ivy--format
1877 (ivy--filter ivy-text ivy--all-candidates))))
1878 (setq ivy--old-text ivy-text))))
1879
1880 (defun ivy--insert-minibuffer (text)
1881 "Insert TEXT into minibuffer with appropriate cleanup."
1882 (let ((resize-mini-windows nil)
1883 (update-fn (ivy-state-update-fn ivy-last))
1884 deactivate-mark)
1885 (ivy--cleanup)
1886 (when update-fn
1887 (funcall update-fn))
1888 (ivy--insert-prompt)
1889 ;; Do nothing if while-no-input was aborted.
1890 (when (stringp text)
1891 (let ((buffer-undo-list t))
1892 (save-excursion
1893 (forward-line 1)
1894 (insert text))))
1895 (when (display-graphic-p)
1896 (ivy--resize-minibuffer-to-fit))))
1897
1898 (defun ivy--resize-minibuffer-to-fit ()
1899 "Resize the minibuffer window size to fit the text in the minibuffer."
1900 (unless (frame-root-window-p (minibuffer-window))
1901 (with-selected-window (minibuffer-window)
1902 (if (fboundp 'window-text-pixel-size)
1903 (let ((text-height (cdr (window-text-pixel-size)))
1904 (body-height (window-body-height nil t)))
1905 (when (> text-height body-height)
1906 ;; Note: the size increment needs to be at least frame-char-height,
1907 ;; otherwise resizing won't do anything.
1908 (let ((delta (max (- text-height body-height) (frame-char-height))))
1909 (window-resize nil delta nil t t))))
1910 (let ((text-height (count-screen-lines))
1911 (body-height (window-body-height)))
1912 (when (> text-height body-height)
1913 (window-resize nil (- text-height body-height) nil t)))))))
1914
1915 (declare-function colir-blend-face-background "ext:colir")
1916
1917 (defun ivy--add-face (str face)
1918 "Propertize STR with FACE.
1919 `font-lock-append-text-property' is used, since it's better than
1920 `propertize' or `add-face-text-property' in this case."
1921 (require 'colir)
1922 (condition-case nil
1923 (progn
1924 (colir-blend-face-background 0 (length str) face str)
1925 (let ((foreground (face-foreground face)))
1926 (when foreground
1927 (add-face-text-property
1928 0 (length str)
1929 `(:foreground ,foreground)
1930 nil
1931 str))))
1932 (error
1933 (ignore-errors
1934 (font-lock-append-text-property 0 (length str) 'face face str))))
1935 str)
1936
1937 (declare-function flx-make-string-cache "ext:flx")
1938 (declare-function flx-score "ext:flx")
1939
1940 (defvar ivy--flx-cache nil)
1941
1942 (eval-after-load 'flx
1943 '(setq ivy--flx-cache (flx-make-string-cache)))
1944
1945 (defun ivy-toggle-case-fold ()
1946 "Toggle the case folding between nil and auto.
1947 In any completion session, the case folding starts in auto:
1948
1949 - when the input is all lower case, `case-fold-search' is t
1950 - otherwise nil.
1951
1952 You can toggle this to make `case-fold-search' nil regardless of input."
1953 (interactive)
1954 (setq ivy-case-fold-search
1955 (if ivy-case-fold-search
1956 nil
1957 'auto))
1958 ;; reset cache so that the candidate list updates
1959 (setq ivy--old-re nil))
1960
1961 (defun ivy--re-filter (re candidates)
1962 "Return all RE matching CANDIDATES.
1963 RE is a list of cons cells, with a regexp car and a boolean cdr.
1964 When the cdr is t, the car must match.
1965 Otherwise, the car must not match."
1966 (let ((re-list (if (stringp re) (list (cons re t)) re))
1967 (res candidates))
1968 (dolist (re re-list)
1969 (setq res
1970 (ignore-errors
1971 (funcall
1972 (if (cdr re)
1973 #'cl-remove-if-not
1974 #'cl-remove-if)
1975 (let ((re-str (car re)))
1976 (lambda (x) (string-match re-str x)))
1977 res))))
1978 res))
1979
1980 (defun ivy--filter (name candidates)
1981 "Return all items that match NAME in CANDIDATES.
1982 CANDIDATES are assumed to be static."
1983 (let ((re (funcall ivy--regex-function name)))
1984 (if (and (equal re ivy--old-re)
1985 ivy--old-cands)
1986 ;; quick caching for "C-n", "C-p" etc.
1987 ivy--old-cands
1988 (let* ((re-str (if (listp re) (caar re) re))
1989 (matcher (ivy-state-matcher ivy-last))
1990 (case-fold-search
1991 (and ivy-case-fold-search
1992 (string= name (downcase name))))
1993 (cands (cond
1994 (matcher
1995 (funcall matcher re candidates))
1996 ((and ivy--old-re
1997 (stringp re)
1998 (stringp ivy--old-re)
1999 (not (string-match "\\\\" ivy--old-re))
2000 (not (equal ivy--old-re ""))
2001 (memq (cl-search
2002 (if (string-match "\\\\)\\'" ivy--old-re)
2003 (substring ivy--old-re 0 -2)
2004 ivy--old-re)
2005 re)
2006 '(0 2)))
2007 (ignore-errors
2008 (cl-remove-if-not
2009 (lambda (x) (string-match re x))
2010 ivy--old-cands)))
2011 (t
2012 (ivy--re-filter re candidates)))))
2013 (ivy--recompute-index name re-str cands)
2014 (setq ivy--old-re
2015 (if (eq ivy--regex-function 'ivy--regex-ignore-order)
2016 re
2017 (if cands
2018 re-str
2019 "")))
2020 (setq ivy--old-cands (ivy--sort name cands))))))
2021
2022 (defun ivy--set-candidates (x)
2023 "Update `ivy--all-candidates' with X."
2024 (let (res)
2025 (dolist (source ivy--extra-candidates)
2026 (if (equal source '(original-source))
2027 (if (null res)
2028 (setq res x)
2029 (setq res (append x res)))
2030 (setq ivy--old-re nil)
2031 (setq res (append
2032 (ivy--filter ivy-text (cadr source))
2033 res))))
2034 (setq ivy--all-candidates res)))
2035
2036 (defcustom ivy-sort-matches-functions-alist '((t . nil))
2037 "An alist of functions used to sort the matching candidates.
2038
2039 This is different from `ivy-sort-functions-alist', which is used
2040 to sort the whole collection only once. The functions taken from
2041 here are instead used on each input change, but they are used
2042 only on already matching candidates, not on all of them.
2043
2044 The alist KEY is a collection function or t to match previously
2045 not matched collection functions.
2046
2047 The alist VAL is a sorting function with the signature of
2048 `ivy--prefix-sort'.")
2049
2050 (defun ivy--sort-files-by-date (_name candidates)
2051 "Re-soft CANDIDATES according to file modification date."
2052 (let ((default-directory ivy--directory))
2053 (cl-sort (copy-sequence candidates)
2054 (lambda (f1 f2)
2055 (time-less-p
2056 (nth 5 (file-attributes f2))
2057 (nth 5 (file-attributes f1)))))))
2058
2059 (defun ivy--sort (name candidates)
2060 "Re-sort CANDIDATES by NAME.
2061 All CANDIDATES are assumed to match NAME."
2062 (let ((key (or (ivy-state-caller ivy-last)
2063 (when (functionp (ivy-state-collection ivy-last))
2064 (ivy-state-collection ivy-last))))
2065 fun)
2066 (cond ((and (require 'flx nil 'noerror)
2067 (eq ivy--regex-function 'ivy--regex-fuzzy))
2068 (ivy--flx-sort name candidates))
2069 ((setq fun (cdr (or (assoc key ivy-sort-matches-functions-alist)
2070 (assoc t ivy-sort-matches-functions-alist))))
2071 (funcall fun name candidates))
2072 (t
2073 candidates))))
2074
2075 (defun ivy--prefix-sort (name candidates)
2076 "Re-sort CANDIDATES.
2077 Prefix matches to NAME are put ahead of the list."
2078 (if (or (string-match "^\\^" name) (string= name ""))
2079 candidates
2080 (let ((re-prefix (concat "^" (funcall ivy--regex-function name)))
2081 res-prefix
2082 res-noprefix)
2083 (dolist (s candidates)
2084 (if (string-match re-prefix s)
2085 (push s res-prefix)
2086 (push s res-noprefix)))
2087 (nconc
2088 (nreverse res-prefix)
2089 (nreverse res-noprefix)))))
2090
2091 (defun ivy--recompute-index (name re-str cands)
2092 (let* ((caller (ivy-state-caller ivy-last))
2093 (func (or (and caller (cdr (assoc caller ivy-index-functions-alist)))
2094 (cdr (assoc t ivy-index-functions-alist))
2095 #'ivy-recompute-index-zero)))
2096 (unless (eq this-command 'ivy-resume)
2097 (setq ivy--index
2098 (or
2099 (cl-position (if (and (> (length name) 0)
2100 (eq ?^ (aref name 0)))
2101 (substring name 1)
2102 name) cands
2103 :test #'equal)
2104 (and ivy--directory
2105 (cl-position
2106 (concat re-str "/") cands
2107 :test #'equal))
2108 (and (not (string= name ""))
2109 (not (and (require 'flx nil 'noerror)
2110 (eq ivy--regex-function 'ivy--regex-fuzzy)
2111 (< (length cands) 200)))
2112
2113 (cl-position (nth ivy--index ivy--old-cands)
2114 cands))
2115 (funcall func re-str cands))))
2116 (when (and (or (string= name "")
2117 (string= name "^"))
2118 (not (equal ivy--old-re "")))
2119 (setq ivy--index
2120 (or (ivy--preselect-index
2121 (ivy-state-preselect ivy-last)
2122 cands)
2123 ivy--index)))))
2124
2125 (defun ivy-recompute-index-swiper (_re-str cands)
2126 (let ((tail (nthcdr ivy--index ivy--old-cands))
2127 idx)
2128 (if (and tail ivy--old-cands (not (equal "^" ivy--old-re)))
2129 (progn
2130 (while (and tail (null idx))
2131 ;; Compare with eq to handle equal duplicates in cands
2132 (setq idx (cl-position (pop tail) cands)))
2133 (or
2134 idx
2135 (1- (length cands))))
2136 (if ivy--old-cands
2137 ivy--index
2138 ;; already in ivy-state-buffer
2139 (let ((n (line-number-at-pos))
2140 (res 0)
2141 (i 0))
2142 (dolist (c cands)
2143 (when (eq n (read (get-text-property 0 'display c)))
2144 (setq res i))
2145 (cl-incf i))
2146 res)))))
2147
2148 (defun ivy-recompute-index-swiper-async (_re-str cands)
2149 (let ((tail (nthcdr ivy--index ivy--old-cands))
2150 idx)
2151 (if (and tail ivy--old-cands (not (equal "^" ivy--old-re)))
2152 (progn
2153 (while (and tail (null idx))
2154 ;; Compare with `equal', since the collection is re-created
2155 ;; each time with `split-string'
2156 (setq idx (cl-position (pop tail) cands :test #'equal)))
2157 (or idx 0))
2158 ivy--index)))
2159
2160 (defun ivy-recompute-index-zero (_re-str _cands)
2161 0)
2162
2163 (defcustom ivy-minibuffer-faces
2164 '(ivy-minibuffer-match-face-1
2165 ivy-minibuffer-match-face-2
2166 ivy-minibuffer-match-face-3
2167 ivy-minibuffer-match-face-4)
2168 "List of `ivy' faces for minibuffer group matches.")
2169
2170 (defvar ivy-flx-limit 200
2171 "Used to conditionally turn off flx sorting.
2172 When the amount of matching candidates is larger than this
2173 number, no sorting will be done.")
2174
2175 (defun ivy--flx-sort (name cands)
2176 "Sort according to closeness to string NAME the string list CANDS."
2177 (condition-case nil
2178 (if (and cands
2179 (< (length cands) ivy-flx-limit))
2180 (let* ((flx-name (if (string-match "^\\^" name)
2181 (substring name 1)
2182 name))
2183 (cands-with-score
2184 (delq nil
2185 (mapcar
2186 (lambda (x)
2187 (let ((score (flx-score x flx-name ivy--flx-cache)))
2188 (and score
2189 (cons score x))))
2190 cands))))
2191 (if cands-with-score
2192 (mapcar (lambda (x)
2193 (let ((str (copy-sequence (cdr x)))
2194 (i 0)
2195 (last-j -2))
2196 (dolist (j (cdar x))
2197 (unless (eq j (1+ last-j))
2198 (cl-incf i))
2199 (setq last-j j)
2200 (ivy-add-face-text-property
2201 j (1+ j)
2202 (nth (1+ (mod (+ i 2) (1- (length ivy-minibuffer-faces))))
2203 ivy-minibuffer-faces)
2204 str))
2205 str))
2206 (sort cands-with-score
2207 (lambda (x y)
2208 (> (caar x) (caar y)))))
2209 cands))
2210 cands)
2211 (error
2212 cands)))
2213
2214 (defcustom ivy-format-function 'ivy-format-function-default
2215 "Function to transform the list of candidates into a string.
2216 This string is inserted into the minibuffer."
2217 :type '(choice
2218 (const :tag "Default" ivy-format-function-default)
2219 (const :tag "Arrow prefix" ivy-format-function-arrow)
2220 (const :tag "Full line" ivy-format-function-line)))
2221
2222 (defun ivy--truncate-string (str width)
2223 "Truncate STR to WIDTH."
2224 (if (> (string-width str) width)
2225 (concat (substring str 0 (min (- width 3)
2226 (- (length str) 3))) "...")
2227 str))
2228
2229 (defun ivy--format-function-generic (selected-fn other-fn cand-pairs separator)
2230 "Transform CAND-PAIRS into a string for minibuffer.
2231 SELECTED-FN and OTHER-FN each take two string arguments.
2232 SEPARATOR is used to join the candidates."
2233 (let ((i -1))
2234 (mapconcat
2235 (lambda (pair)
2236 (let ((str (car pair))
2237 (extra (cdr pair))
2238 (curr (eq (cl-incf i) ivy--index)))
2239 (if curr
2240 (funcall selected-fn str extra)
2241 (funcall other-fn str extra))))
2242 cand-pairs
2243 separator)))
2244
2245 (defun ivy-format-function-default (cand-pairs)
2246 "Transform CAND-PAIRS into a string for minibuffer."
2247 (ivy--format-function-generic
2248 (lambda (str extra)
2249 (concat (ivy--add-face str 'ivy-current-match) extra))
2250 #'concat
2251 cand-pairs
2252 "\n"))
2253
2254 (defun ivy-format-function-arrow (cand-pairs)
2255 "Transform CAND-PAIRS into a string for minibuffer."
2256 (ivy--format-function-generic
2257 (lambda (str extra)
2258 (concat "> " (ivy--add-face str 'ivy-current-match) extra))
2259 (lambda (str extra)
2260 (concat " " str extra))
2261 cand-pairs
2262 "\n"))
2263
2264 (defun ivy-format-function-line (cand-pairs)
2265 "Transform CAND-PAIRS into a string for minibuffer."
2266 (ivy--format-function-generic
2267 (lambda (str extra)
2268 (ivy--add-face (concat str extra "\n") 'ivy-current-match))
2269 (lambda (str extra)
2270 (concat str extra "\n"))
2271 cand-pairs
2272 ""))
2273
2274 (defun ivy-add-face-text-property (start end face str)
2275 (if (fboundp 'add-face-text-property)
2276 (add-face-text-property
2277 start end face nil str)
2278 (font-lock-append-text-property
2279 start end 'face face str)))
2280
2281 (defun ivy--format-minibuffer-line (str)
2282 (let ((start 0)
2283 (str (copy-sequence str)))
2284 (cond ((eq ivy--regex-function 'ivy--regex-ignore-order)
2285 (when (consp ivy--old-re)
2286 (let ((i 1))
2287 (dolist (re ivy--old-re)
2288 (when (string-match (car re) str)
2289 (ivy-add-face-text-property
2290 (match-beginning 0) (match-end 0)
2291 (nth (1+ (mod (+ i 2) (1- (length ivy-minibuffer-faces))))
2292 ivy-minibuffer-faces)
2293 str))
2294 (cl-incf i)))))
2295 ((and (eq ivy-display-style 'fancy)
2296 (not (eq ivy--regex-function 'ivy--regex-fuzzy)))
2297 (unless ivy--old-re
2298 (setq ivy--old-re (funcall ivy--regex-function ivy-text)))
2299 (while (and (string-match ivy--old-re str start)
2300 (> (- (match-end 0) (match-beginning 0)) 0))
2301 (setq start (match-end 0))
2302 (let ((i 0))
2303 (while (<= i ivy--subexps)
2304 (let ((face
2305 (cond ((zerop ivy--subexps)
2306 (cadr ivy-minibuffer-faces))
2307 ((zerop i)
2308 (car ivy-minibuffer-faces))
2309 (t
2310 (nth (1+ (mod (+ i 2) (1- (length ivy-minibuffer-faces))))
2311 ivy-minibuffer-faces)))))
2312 (ivy-add-face-text-property
2313 (match-beginning i) (match-end i)
2314 face str))
2315 (cl-incf i))))))
2316 str))
2317
2318 (defun ivy--format (cands)
2319 "Return a string for CANDS suitable for display in the minibuffer.
2320 CANDS is a list of strings."
2321 (setq ivy--length (length cands))
2322 (when (>= ivy--index ivy--length)
2323 (setq ivy--index (max (1- ivy--length) 0)))
2324 (if (null cands)
2325 (setq ivy--current "")
2326 (let* ((half-height (/ ivy-height 2))
2327 (start (max 0 (- ivy--index half-height)))
2328 (end (min (+ start (1- ivy-height)) ivy--length))
2329 (start (max 0 (min start (- end (1- ivy-height)))))
2330 (cands (cl-subseq cands start end))
2331 (index (- ivy--index start)))
2332 (cond (ivy--directory
2333 (setq cands (mapcar (lambda (x)
2334 (if (string-match-p "/\\'" x)
2335 (propertize x 'face 'ivy-subdir)
2336 x))
2337 cands)))
2338 ((eq (ivy-state-collection ivy-last) 'internal-complete-buffer)
2339 (setq cands (mapcar (lambda (x)
2340 (let ((b (get-buffer x)))
2341 (if (and b
2342 (buffer-file-name b)
2343 (buffer-modified-p b))
2344 (propertize x 'face 'ivy-modified-buffer)
2345 x)))
2346 cands))))
2347 (setq ivy--current (copy-sequence (nth index cands)))
2348 (let* ((ivy--index index)
2349 (cand-pairs (mapcar
2350 (lambda (cand)
2351 (cons (ivy--format-minibuffer-line cand) nil)) cands))
2352 (res (concat "\n" (funcall ivy-format-function cand-pairs))))
2353 (put-text-property 0 (length res) 'read-only nil res)
2354 res))))
2355
2356 (defvar ivy--virtual-buffers nil
2357 "Store the virtual buffers alist.")
2358
2359 (defvar recentf-list)
2360
2361 (defcustom ivy-virtual-abbreviate 'name
2362 "The mode of abbreviation for virtual buffer names."
2363 :type '(choice
2364 (const :tag "Only name" name)
2365 (const :tag "Full path" full)
2366 ;; eventually, uniquify
2367 ))
2368
2369 (defun ivy--virtual-buffers ()
2370 "Adapted from `ido-add-virtual-buffers-to-list'."
2371 (unless recentf-mode
2372 (recentf-mode 1))
2373 (let ((bookmarks (and (boundp 'bookmark-alist)
2374 bookmark-alist))
2375 virtual-buffers name)
2376 (dolist (head (append
2377 recentf-list
2378 (delete " - no file -"
2379 (delq nil (mapcar (lambda (bookmark)
2380 (cdr (assoc 'filename bookmark)))
2381 bookmarks)))))
2382 (setq name
2383 (if (eq ivy-virtual-abbreviate 'name)
2384 (file-name-nondirectory head)
2385 (expand-file-name head)))
2386 (when (equal name "")
2387 (setq name (file-name-nondirectory (directory-file-name head))))
2388 (when (equal name "")
2389 (setq name head))
2390 (and (not (equal name ""))
2391 (null (get-file-buffer head))
2392 (not (assoc name virtual-buffers))
2393 (push (cons name head) virtual-buffers)))
2394 (when virtual-buffers
2395 (dolist (comp virtual-buffers)
2396 (put-text-property 0 (length (car comp))
2397 'face 'ivy-virtual
2398 (car comp)))
2399 (setq ivy--virtual-buffers (nreverse virtual-buffers))
2400 (mapcar #'car ivy--virtual-buffers))))
2401
2402 (defcustom ivy-ignore-buffers nil
2403 "List of regexps matching buffer names to ignore."
2404 :type '(repeat regexp))
2405
2406 (defun ivy--buffer-list (str &optional virtual)
2407 "Return the buffers that match STR.
2408 When VIRTUAL is non-nil, add virtual buffers."
2409 (delete-dups
2410 (append
2411 (mapcar
2412 (lambda (x)
2413 (if (with-current-buffer x
2414 (file-remote-p
2415 (abbreviate-file-name default-directory)))
2416 (propertize x 'face 'ivy-remote)
2417 x))
2418 (all-completions str 'internal-complete-buffer))
2419 (and virtual
2420 (ivy--virtual-buffers)))))
2421
2422 (defun ivy--switch-buffer-action (buffer)
2423 "Switch to BUFFER.
2424 BUFFER may be a string or nil."
2425 (with-ivy-window
2426 (if (zerop (length buffer))
2427 (switch-to-buffer
2428 ivy-text nil 'force-same-window)
2429 (let ((virtual (assoc buffer ivy--virtual-buffers)))
2430 (if (and virtual
2431 (not (get-buffer buffer)))
2432 (find-file (cdr virtual))
2433 (switch-to-buffer
2434 buffer nil 'force-same-window))))))
2435
2436 (defun ivy--switch-buffer-other-window-action (buffer)
2437 "Switch to BUFFER in other window.
2438 BUFFER may be a string or nil."
2439 (if (zerop (length buffer))
2440 (switch-to-buffer-other-window ivy-text)
2441 (let ((virtual (assoc buffer ivy--virtual-buffers)))
2442 (if (and virtual
2443 (not (get-buffer buffer)))
2444 (find-file-other-window (cdr virtual))
2445 (switch-to-buffer-other-window buffer)))))
2446
2447 (defun ivy--rename-buffer-action (buffer)
2448 "Rename BUFFER."
2449 (let ((new-name (read-string "Rename buffer (to new name): ")))
2450 (with-current-buffer buffer
2451 (rename-buffer new-name))))
2452
2453 (defvar ivy-switch-buffer-map (make-sparse-keymap))
2454
2455 (ivy-set-actions
2456 'ivy-switch-buffer
2457 '(("k"
2458 (lambda (x)
2459 (kill-buffer x)
2460 (ivy--reset-state ivy-last))
2461 "kill")
2462 ("j"
2463 ivy--switch-buffer-other-window-action
2464 "other")
2465 ("r"
2466 ivy--rename-buffer-action
2467 "rename")))
2468
2469 (defun ivy--switch-buffer-matcher (regexp candidates)
2470 "Return REGEXP-matching CANDIDATES.
2471 Skip buffers that match `ivy-ignore-buffers'."
2472 (let ((res (ivy--re-filter regexp candidates)))
2473 (if (or (null ivy-use-ignore)
2474 (null ivy-ignore-buffers))
2475 res
2476 (or (cl-remove-if
2477 (lambda (buf)
2478 (cl-find-if
2479 (lambda (regexp)
2480 (string-match regexp buf))
2481 ivy-ignore-buffers))
2482 res)
2483 res))))
2484
2485 ;;;###autoload
2486 (defun ivy-switch-buffer ()
2487 "Switch to another buffer."
2488 (interactive)
2489 (if (not ivy-mode)
2490 (call-interactively 'switch-to-buffer)
2491 (let ((this-command 'ivy-switch-buffer))
2492 (ivy-read "Switch to buffer: " 'internal-complete-buffer
2493 :matcher #'ivy--switch-buffer-matcher
2494 :preselect (buffer-name (other-buffer (current-buffer)))
2495 :action #'ivy--switch-buffer-action
2496 :keymap ivy-switch-buffer-map
2497 :caller 'ivy-switch-buffer))))
2498
2499 ;;;###autoload
2500 (defun ivy-switch-buffer-other-window ()
2501 "Switch to another buffer in another window."
2502 (interactive)
2503 (ivy-read "Switch to buffer in other window: " 'internal-complete-buffer
2504 :preselect (buffer-name (other-buffer (current-buffer)))
2505 :action #'ivy--switch-buffer-other-window-action
2506 :keymap ivy-switch-buffer-map
2507 :caller 'ivy-switch-buffer-other-window))
2508
2509 ;;;###autoload
2510 (defun ivy-recentf ()
2511 "Find a file on `recentf-list'."
2512 (interactive)
2513 (ivy-read "Recentf: " recentf-list
2514 :action
2515 (lambda (f)
2516 (with-ivy-window
2517 (find-file f)))
2518 :caller 'ivy-recentf))
2519
2520 (defun ivy-yank-word ()
2521 "Pull next word from buffer into search string."
2522 (interactive)
2523 (let (amend)
2524 (with-ivy-window
2525 (let ((pt (point))
2526 (le (line-end-position)))
2527 (forward-word 1)
2528 (if (> (point) le)
2529 (goto-char pt)
2530 (setq amend (buffer-substring-no-properties pt (point))))))
2531 (when amend
2532 (insert (replace-regexp-in-string " +" " " amend)))))
2533
2534 (defun ivy-kill-ring-save ()
2535 "Store the current candidates into the kill ring.
2536 If the region is active, forward to `kill-ring-save' instead."
2537 (interactive)
2538 (if (region-active-p)
2539 (call-interactively 'kill-ring-save)
2540 (kill-new
2541 (mapconcat
2542 #'identity
2543 ivy--old-cands
2544 "\n"))))
2545
2546 (defun ivy-insert-current ()
2547 "Make the current candidate into current input.
2548 Don't finish completion."
2549 (interactive)
2550 (delete-minibuffer-contents)
2551 (if (and ivy--directory
2552 (string-match "/$" ivy--current))
2553 (insert (substring ivy--current 0 -1))
2554 (insert ivy--current)))
2555
2556 (defun ivy-toggle-fuzzy ()
2557 "Toggle the re builder between `ivy--regex-fuzzy' and `ivy--regex-plus'."
2558 (interactive)
2559 (setq ivy--old-re nil)
2560 (if (eq ivy--regex-function 'ivy--regex-fuzzy)
2561 (setq ivy--regex-function 'ivy--regex-plus)
2562 (setq ivy--regex-function 'ivy--regex-fuzzy)))
2563
2564 (defun ivy-reverse-i-search ()
2565 "Enter a recursive `ivy-read' session using the current history.
2566 The selected history element will be inserted into the minibuffer."
2567 (interactive)
2568 (let ((enable-recursive-minibuffers t)
2569 (history (symbol-value (ivy-state-history ivy-last)))
2570 (old-last ivy-last)
2571 (ivy-recursive-restore nil))
2572 (ivy-read "Reverse-i-search: "
2573 history
2574 :action (lambda (x)
2575 (ivy--reset-state
2576 (setq ivy-last old-last))
2577 (delete-minibuffer-contents)
2578 (insert (substring-no-properties x))
2579 (ivy--cd-maybe)))))
2580
2581 (defun ivy-restrict-to-matches ()
2582 "Restrict candidates to current matches and erase input."
2583 (interactive)
2584 (delete-minibuffer-contents)
2585 (setq ivy--all-candidates
2586 (ivy--filter ivy-text ivy--all-candidates)))
2587
2588 ;;* Occur
2589 (defvar-local ivy-occur-last nil
2590 "Buffer-local value of `ivy-last'.
2591 Can't re-use `ivy-last' because using e.g. `swiper' in the same
2592 buffer would modify `ivy-last'.")
2593
2594 (defvar ivy-occur-mode-map
2595 (let ((map (make-sparse-keymap)))
2596 (define-key map [mouse-1] 'ivy-occur-click)
2597 (define-key map (kbd "RET") 'ivy-occur-press)
2598 (define-key map (kbd "j") 'next-line)
2599 (define-key map (kbd "k") 'previous-line)
2600 (define-key map (kbd "h") 'backward-char)
2601 (define-key map (kbd "l") 'forward-char)
2602 (define-key map (kbd "g") 'ivy-occur-press)
2603 (define-key map (kbd "a") 'ivy-occur-read-action)
2604 (define-key map (kbd "o") 'ivy-occur-dispatch)
2605 (define-key map (kbd "q") 'quit-window)
2606 map)
2607 "Keymap for Ivy Occur mode.")
2608
2609 (define-derived-mode ivy-occur-mode fundamental-mode "Ivy-Occur"
2610 "Major mode for output from \\[ivy-occur].
2611
2612 \\{ivy-occur-mode-map}")
2613
2614 (defvar ivy-occur-grep-mode-map
2615 (let ((map (copy-keymap ivy-occur-mode-map)))
2616 (define-key map (kbd "C-x C-q") 'ivy-wgrep-change-to-wgrep-mode)
2617 map)
2618 "Keymap for Ivy Occur Grep mode.")
2619
2620 (define-derived-mode ivy-occur-grep-mode grep-mode "Ivy-Occur"
2621 "Major mode for output from \\[ivy-occur].
2622
2623 \\{ivy-occur-grep-mode-map}")
2624
2625 (defvar ivy--occurs-list nil
2626 "A list of custom occur generators per command.")
2627
2628 (defun ivy-set-occur (cmd occur)
2629 "Assign CMD a custom OCCUR function."
2630 (setq ivy--occurs-list
2631 (plist-put ivy--occurs-list cmd occur)))
2632
2633 (defun ivy--occur-insert-lines (cands)
2634 (dolist (str cands)
2635 (add-text-properties
2636 0 (length str)
2637 `(mouse-face
2638 highlight
2639 help-echo "mouse-1: call ivy-action")
2640 str)
2641 (insert str "\n")))
2642
2643 (defun ivy-occur ()
2644 "Stop completion and put the current matches into a new buffer.
2645
2646 The new buffer remembers current action(s).
2647
2648 While in the *ivy-occur* buffer, selecting a candidate with RET or
2649 a mouse click will call the appropriate action for that candidate.
2650
2651 There is no limit on the number of *ivy-occur* buffers."
2652 (interactive)
2653 (let* ((caller (ivy-state-caller ivy-last))
2654 (occur-fn (plist-get ivy--occurs-list caller))
2655 (buffer
2656 (generate-new-buffer
2657 (format "*ivy-occur%s \"%s\"*"
2658 (if caller
2659 (concat " " (prin1-to-string caller))
2660 "")
2661 ivy-text))))
2662 (with-current-buffer buffer
2663 (let ((inhibit-read-only t))
2664 (erase-buffer)
2665 (if occur-fn
2666 (funcall occur-fn)
2667 (ivy-occur-mode)
2668 (insert (format "%d candidates:\n" (length ivy--old-cands)))
2669 (ivy--occur-insert-lines
2670 (mapcar
2671 (lambda (cand) (concat " " cand))
2672 ivy--old-cands))))
2673 (setf (ivy-state-text ivy-last) ivy-text)
2674 (setq ivy-occur-last ivy-last)
2675 (setq-local ivy--directory ivy--directory))
2676 (ivy-exit-with-action
2677 `(lambda (_) (pop-to-buffer ,buffer)))))
2678
2679 (declare-function wgrep-change-to-wgrep-mode "ext:wgrep")
2680
2681 (defun ivy-wgrep-change-to-wgrep-mode ()
2682 "Forward to `wgrep-change-to-wgrep-mode'."
2683 (interactive)
2684 (if (require 'wgrep nil 'noerror)
2685 (wgrep-change-to-wgrep-mode)
2686 (error "Package wgrep isn't installed")))
2687
2688 (defun ivy-occur-read-action ()
2689 "Select one of the available actions as the current one."
2690 (interactive)
2691 (let ((ivy-last ivy-occur-last))
2692 (ivy-read-action)))
2693
2694 (defun ivy-occur-dispatch ()
2695 "Call one of the available actions on the current item."
2696 (interactive)
2697 (let* ((state-action (ivy-state-action ivy-occur-last))
2698 (actions (if (symbolp state-action)
2699 state-action
2700 (copy-sequence state-action))))
2701 (unwind-protect
2702 (progn
2703 (ivy-occur-read-action)
2704 (ivy-occur-press))
2705 (setf (ivy-state-action ivy-occur-last) actions))))
2706
2707 (defun ivy-occur-click (event)
2708 "Execute action for the current candidate.
2709 EVENT gives the mouse position."
2710 (interactive "e")
2711 (let ((window (posn-window (event-end event)))
2712 (pos (posn-point (event-end event))))
2713 (with-current-buffer (window-buffer window)
2714 (goto-char pos)
2715 (ivy-occur-press))))
2716
2717 (declare-function swiper--cleanup "swiper")
2718 (declare-function swiper--add-overlays "swiper")
2719
2720 (defun ivy-occur-press ()
2721 "Execute action for the current candidate."
2722 (interactive)
2723 (require 'pulse)
2724 (when (save-excursion
2725 (beginning-of-line)
2726 (looking-at "\\(?:./\\| \\)\\(.*\\)$"))
2727 (let* ((ivy-last ivy-occur-last)
2728 (ivy-text (ivy-state-text ivy-last))
2729 (str (buffer-substring
2730 (match-beginning 1)
2731 (match-end 1)))
2732 (coll (ivy-state-collection ivy-last))
2733 (action (ivy--get-action ivy-last))
2734 (ivy-exit 'done))
2735 (with-ivy-window
2736 (funcall action
2737 (if (and (consp coll)
2738 (consp (car coll)))
2739 (cdr (assoc str coll))
2740 str))
2741 (if (memq (ivy-state-caller ivy-last)
2742 '(swiper counsel-git-grep))
2743 (with-current-buffer (window-buffer (selected-window))
2744 (swiper--cleanup)
2745 (swiper--add-overlays
2746 (ivy--regex ivy-text)
2747 (line-beginning-position)
2748 (line-end-position)
2749 (selected-window))
2750 (run-at-time 0.5 nil 'swiper--cleanup))
2751 (pulse-momentary-highlight-one-line (point)))))))
2752
2753 (defvar ivy-help-file (let ((default-directory
2754 (if load-file-name
2755 (file-name-directory load-file-name)
2756 default-directory)))
2757 (if (file-exists-p "ivy-help.org")
2758 (expand-file-name "ivy-help.org")
2759 (if (file-exists-p "doc/ivy-help.org")
2760 (expand-file-name "doc/ivy-help.org"))))
2761 "The file for `ivy-help'.")
2762
2763 (defun ivy-help ()
2764 "Help for `ivy'."
2765 (interactive)
2766 (let ((buf (get-buffer "*Ivy Help*")))
2767 (unless buf
2768 (setq buf (get-buffer-create "*Ivy Help*"))
2769 (with-current-buffer buf
2770 (insert-file-contents ivy-help-file)
2771 (org-mode)
2772 (view-mode)
2773 (goto-char (point-min))))
2774 (if (eq this-command 'ivy-help)
2775 (switch-to-buffer buf)
2776 (with-ivy-window
2777 (pop-to-buffer buf)))
2778 (view-mode)
2779 (goto-char (point-min))))
2780
2781 (provide 'ivy)
2782
2783 ;;; ivy.el ends here