]> code.delx.au - gnu-emacs-elpa/blob - ivy.el
ivy.el (ivy-next-line-or-history): Update
[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 (if (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 (delete-dups
1192 (append (plist-get ivy--actions-list t)
1193 (plist-get ivy--actions-list this-command)
1194 (plist-get ivy--actions-list caller)))))
1195 (when extra-actions
1196 (setq action
1197 (cond ((functionp action)
1198 `(1
1199 ("o" ,action "default")
1200 ,@extra-actions))
1201 ((null action)
1202 `(1
1203 ("o" identity "default")
1204 ,@extra-actions))
1205 (t
1206 (delete-dups (append action extra-actions)))))))
1207 (let ((extra-sources (plist-get ivy--sources-list caller)))
1208 (if extra-sources
1209 (progn
1210 (setq ivy--extra-candidates nil)
1211 (dolist (source extra-sources)
1212 (cond ((equal source '(original-source))
1213 (setq ivy--extra-candidates
1214 (cons source ivy--extra-candidates)))
1215 ((null (cdr source))
1216 (setq ivy--extra-candidates
1217 (cons
1218 (list (car source) (funcall (car source)))
1219 ivy--extra-candidates))))))
1220 (setq ivy--extra-candidates '((original-source)))))
1221 (let ((recursive-ivy-last (and (active-minibuffer-window) ivy-last)))
1222 (setq ivy-last
1223 (make-ivy-state
1224 :prompt prompt
1225 :collection collection
1226 :predicate predicate
1227 :require-match require-match
1228 :initial-input initial-input
1229 :history history
1230 :preselect preselect
1231 :keymap keymap
1232 :update-fn update-fn
1233 :sort sort
1234 :action action
1235 :window (selected-window)
1236 :buffer (current-buffer)
1237 :unwind unwind
1238 :re-builder re-builder
1239 :matcher matcher
1240 :dynamic-collection dynamic-collection
1241 :caller caller))
1242 (ivy--reset-state ivy-last)
1243 (prog1
1244 (unwind-protect
1245 (minibuffer-with-setup-hook
1246 #'ivy--minibuffer-setup
1247 (let* ((hist (or history 'ivy-history))
1248 (minibuffer-completion-table collection)
1249 (minibuffer-completion-predicate predicate)
1250 (resize-mini-windows (cond
1251 ((display-graphic-p) nil)
1252 ((null resize-mini-windows) 'grow-only)
1253 (t resize-mini-windows))))
1254 (read-from-minibuffer
1255 prompt
1256 (ivy-state-initial-input ivy-last)
1257 (make-composed-keymap keymap ivy-minibuffer-map)
1258 nil
1259 hist)
1260 (when (eq ivy-exit 'done)
1261 (let ((item (if ivy--directory
1262 ivy--current
1263 ivy-text)))
1264 (unless (equal item "")
1265 (set hist (cons (propertize item 'ivy-index ivy--index)
1266 (delete item
1267 (cdr (symbol-value hist))))))))
1268 ivy--current))
1269 (remove-hook 'post-command-hook #'ivy--exhibit)
1270 (when (setq unwind (ivy-state-unwind ivy-last))
1271 (funcall unwind))
1272 (unless (eq ivy-exit 'done)
1273 (when recursive-ivy-last
1274 (ivy--reset-state (setq ivy-last recursive-ivy-last)))))
1275 (ivy-call)
1276 (when (and recursive-ivy-last
1277 ivy-recursive-restore)
1278 (ivy--reset-state (setq ivy-last recursive-ivy-last))))))
1279
1280 (defun ivy--reset-state (state)
1281 "Reset the ivy to STATE.
1282 This is useful for recursive `ivy-read'."
1283 (let ((prompt (or (ivy-state-prompt state) ""))
1284 (collection (ivy-state-collection state))
1285 (predicate (ivy-state-predicate state))
1286 (history (ivy-state-history state))
1287 (preselect (ivy-state-preselect state))
1288 (sort (ivy-state-sort state))
1289 (re-builder (ivy-state-re-builder state))
1290 (dynamic-collection (ivy-state-dynamic-collection state))
1291 (initial-input (ivy-state-initial-input state))
1292 (require-match (ivy-state-require-match state))
1293 (caller (ivy-state-caller state)))
1294 (unless initial-input
1295 (setq initial-input (cdr (assoc this-command
1296 ivy-initial-inputs-alist))))
1297 (setq ivy--directory nil)
1298 (setq ivy-case-fold-search 'auto)
1299 (setq ivy--regex-function
1300 (or re-builder
1301 (and (functionp collection)
1302 (cdr (assoc collection ivy-re-builders-alist)))
1303 (and caller
1304 (cdr (assoc caller ivy-re-builders-alist)))
1305 (cdr (assoc this-command ivy-re-builders-alist))
1306 (cdr (assoc t ivy-re-builders-alist))
1307 'ivy--regex))
1308 (setq ivy--subexps 0)
1309 (setq ivy--regexp-quote 'regexp-quote)
1310 (setq ivy--old-text "")
1311 (setq ivy--full-length nil)
1312 (setq ivy-text "")
1313 (setq ivy-calling nil)
1314 (setq ivy-use-ignore t)
1315 (let (coll sort-fn)
1316 (cond ((eq collection 'Info-read-node-name-1)
1317 (if (equal Info-current-file "dir")
1318 (setq coll
1319 (mapcar (lambda (x) (format "(%s)" x))
1320 (cl-delete-duplicates
1321 (all-completions "(" collection predicate)
1322 :test #'equal)))
1323 (setq coll (all-completions "" collection predicate))))
1324 ((eq collection 'read-file-name-internal)
1325 (setq ivy--directory default-directory)
1326 (require 'dired)
1327 (when preselect
1328 (let ((preselect-directory (file-name-directory preselect)))
1329 (unless (or (null preselect-directory)
1330 (string= preselect-directory
1331 default-directory))
1332 (setq ivy--directory preselect-directory))
1333 (setf
1334 (ivy-state-preselect state)
1335 (setq preselect (file-name-nondirectory preselect)))))
1336 (setq coll (ivy--sorted-files ivy--directory))
1337 (when initial-input
1338 (unless (or require-match
1339 (equal initial-input default-directory)
1340 (equal initial-input ""))
1341 (setq coll (cons initial-input coll)))
1342 (unless (and (ivy-state-action ivy-last)
1343 (not (equal (ivy--get-action ivy-last) 'identity)))
1344 (setq initial-input nil))))
1345 ((eq collection 'internal-complete-buffer)
1346 (setq coll (ivy--buffer-list "" ivy-use-virtual-buffers)))
1347 (dynamic-collection
1348 (setq coll (funcall collection ivy-text)))
1349 ((or (functionp collection)
1350 (byte-code-function-p collection)
1351 (vectorp collection)
1352 (and (consp collection) (listp (car collection)))
1353 (hash-table-p collection)
1354 (and (listp collection) (symbolp (car collection))))
1355 (setq coll (all-completions "" collection predicate)))
1356 (t
1357 (setq coll collection)))
1358 (when sort
1359 (if (and (functionp collection)
1360 (setq sort-fn (assoc collection ivy-sort-functions-alist)))
1361 (when (and (setq sort-fn (cdr sort-fn))
1362 (not (eq collection 'read-file-name-internal)))
1363 (setq coll (cl-sort coll sort-fn)))
1364 (unless (eq history 'org-refile-history)
1365 (if (and (setq sort-fn (cdr (assoc t ivy-sort-functions-alist)))
1366 (<= (length coll) ivy-sort-max-size))
1367 (setq coll (cl-sort (copy-sequence coll) sort-fn))))))
1368 (when preselect
1369 (unless (or (and require-match
1370 (not (eq collection 'internal-complete-buffer)))
1371 dynamic-collection
1372 (let ((re (regexp-quote preselect)))
1373 (cl-find-if (lambda (x) (string-match re x))
1374 coll)))
1375 (setq coll (cons preselect coll))))
1376 (setq ivy--old-re nil)
1377 (setq ivy--old-cands nil)
1378 (when (integerp preselect)
1379 (setq ivy--old-re "")
1380 (setq ivy--index preselect))
1381 (when initial-input
1382 ;; Needed for anchor to work
1383 (setq ivy--old-cands coll)
1384 (setq ivy--old-cands (ivy--filter initial-input coll)))
1385 (setq ivy--all-candidates coll)
1386 (unless (integerp preselect)
1387 (setq ivy--index (or
1388 (and dynamic-collection
1389 ivy--index)
1390 (and preselect
1391 (ivy--preselect-index
1392 preselect
1393 (if initial-input
1394 ivy--old-cands
1395 coll)))
1396 0))))
1397 (setq ivy-exit nil)
1398 (setq ivy--default
1399 (if (region-active-p)
1400 (buffer-substring
1401 (region-beginning)
1402 (region-end))
1403 (or
1404 (thing-at-point 'url)
1405 (thing-at-point 'symbol)
1406 "")))
1407 (setq ivy--prompt
1408 (cond ((string-match "%.*d" prompt)
1409 prompt)
1410 ((null ivy-count-format)
1411 (error
1412 "`ivy-count-format' can't be nil. Set it to an empty string instead"))
1413 ((string-match "%d.*%d" ivy-count-format)
1414 (let ((w (length (number-to-string
1415 (length ivy--all-candidates))))
1416 (s (copy-sequence ivy-count-format)))
1417 (string-match "%d" s)
1418 (match-end 0)
1419 (string-match "%d" s (match-end 0))
1420 (setq s (replace-match (format "%%-%dd" w) nil nil s))
1421 (string-match "%d" s)
1422 (concat (replace-match (format "%%%dd" w) nil nil s)
1423 prompt)))
1424 ((string-match "%.*d" ivy-count-format)
1425 (concat ivy-count-format prompt))
1426 (ivy--directory
1427 prompt)
1428 (t
1429 nil)))
1430 (setf (ivy-state-initial-input ivy-last) initial-input)))
1431
1432 ;;;###autoload
1433 (defun ivy-completing-read (prompt collection
1434 &optional predicate require-match initial-input
1435 history def inherit-input-method)
1436 "Read a string in the minibuffer, with completion.
1437
1438 This interface conforms to `completing-read' and can be used for
1439 `completing-read-function'.
1440
1441 PROMPT is a string that normally ends in a colon and a space.
1442 COLLECTION is either a list of strings, an alist, an obarray, or a hash table.
1443 PREDICATE limits completion to a subset of COLLECTION.
1444 REQUIRE-MATCH is a boolean value. See `completing-read'.
1445 INITIAL-INPUT is a string inserted into the minibuffer initially.
1446 HISTORY is a list of previously selected inputs.
1447 DEF is the default value.
1448 INHERIT-INPUT-METHOD is currently ignored."
1449 (if (memq this-command '(tmm-menubar tmm-shortcut))
1450 (completing-read-default prompt collection
1451 predicate require-match
1452 initial-input history
1453 def inherit-input-method)
1454 ;; See the doc of `completing-read'.
1455 (when (consp history)
1456 (when (numberp (cdr history))
1457 (setq initial-input (nth (1- (cdr history))
1458 (symbol-value (car history)))))
1459 (setq history (car history)))
1460 (ivy-read (replace-regexp-in-string "%" "%%" prompt)
1461 collection
1462 :predicate predicate
1463 :require-match require-match
1464 :initial-input (if (consp initial-input)
1465 (car initial-input)
1466 (if (and (stringp initial-input)
1467 (string-match "\\+" initial-input))
1468 (replace-regexp-in-string
1469 "\\+" "\\\\+" initial-input)
1470 initial-input))
1471 :preselect (if (listp def) (car def) def)
1472 :history history
1473 :keymap nil
1474 :sort
1475 (let ((sort (assoc this-command ivy-sort-functions-alist)))
1476 (if sort
1477 (cdr sort)
1478 t)))))
1479
1480 (defvar ivy-completion-beg nil
1481 "Completion bounds start.")
1482
1483 (defvar ivy-completion-end nil
1484 "Completion bounds end.")
1485
1486 (defun ivy-completion-in-region-action (str)
1487 "Insert STR, erasing the previous one.
1488 The previous string is between `ivy-completion-beg' and `ivy-completion-end'."
1489 (when (stringp str)
1490 (with-ivy-window
1491 (when ivy-completion-beg
1492 (delete-region
1493 ivy-completion-beg
1494 ivy-completion-end))
1495 (setq ivy-completion-beg
1496 (move-marker (make-marker) (point)))
1497 (insert str)
1498 (setq ivy-completion-end
1499 (move-marker (make-marker) (point))))))
1500
1501 (defun ivy-completion-common-length (str)
1502 "Return the length of the first 'completions-common-part face in STR."
1503 (let ((pos 0)
1504 (len (length str)))
1505 (while (and (<= pos len)
1506 (let ((prop (get-text-property pos 'face str)))
1507 (not (eq 'completions-common-part
1508 (if (listp prop) (car prop) prop)))))
1509 (setq pos (1+ pos)))
1510 (if (< pos len)
1511 (or (next-single-property-change pos 'face str) len)
1512 0)))
1513
1514 (defun ivy-completion-in-region (start end collection &optional predicate)
1515 "An Ivy function suitable for `completion-in-region-function'."
1516 (let* ((enable-recursive-minibuffers t)
1517 (str (buffer-substring-no-properties start end))
1518 (comps
1519 (completion-all-completions str collection predicate (- end start))))
1520 (if (null comps)
1521 (message "No matches")
1522 (nconc comps nil)
1523 (setq ivy-completion-beg (- end (ivy-completion-common-length (car comps))))
1524 (setq ivy-completion-end end)
1525 (if (null (cdr comps))
1526 (if (string= str (car comps))
1527 (message "Sole match")
1528 (setf (ivy-state-window ivy-last) (selected-window))
1529 (ivy-completion-in-region-action
1530 (substring-no-properties
1531 (car comps))))
1532 (let* ((w (1+ (floor (log (length comps) 10))))
1533 (ivy-count-format (if (string= ivy-count-format "")
1534 ivy-count-format
1535 (format "%%-%dd " w)))
1536 (prompt (format "(%s): " str)))
1537 (and
1538 (ivy-read (if (string= ivy-count-format "")
1539 prompt
1540 (replace-regexp-in-string "%" "%%" prompt))
1541 ;; remove 'completions-first-difference face
1542 (mapcar #'substring-no-properties comps)
1543 :predicate predicate
1544 :action #'ivy-completion-in-region-action
1545 :require-match t)
1546 t))))))
1547
1548 (defcustom ivy-do-completion-in-region t
1549 "When non-nil `ivy-mode' will set `completion-in-region-function'."
1550 :type 'boolean)
1551
1552 ;;;###autoload
1553 (define-minor-mode ivy-mode
1554 "Toggle Ivy mode on or off.
1555 Turn Ivy mode on if ARG is positive, off otherwise.
1556 Turning on Ivy mode sets `completing-read-function' to
1557 `ivy-completing-read'.
1558
1559 Global bindings:
1560 \\{ivy-mode-map}
1561
1562 Minibuffer bindings:
1563 \\{ivy-minibuffer-map}"
1564 :group 'ivy
1565 :global t
1566 :keymap ivy-mode-map
1567 :lighter " ivy"
1568 (if ivy-mode
1569 (progn
1570 (setq completing-read-function 'ivy-completing-read)
1571 (when ivy-do-completion-in-region
1572 (setq completion-in-region-function 'ivy-completion-in-region)))
1573 (setq completing-read-function 'completing-read-default)
1574 (setq completion-in-region-function 'completion--in-region)))
1575
1576 (defun ivy--preselect-index (preselect candidates)
1577 "Return the index of PRESELECT in CANDIDATES."
1578 (cond ((integerp preselect)
1579 preselect)
1580 ((cl-position preselect candidates :test #'equal))
1581 ((stringp preselect)
1582 (let ((re (regexp-quote preselect)))
1583 (cl-position-if
1584 (lambda (x)
1585 (string-match re x))
1586 candidates)))))
1587
1588 ;;* Implementation
1589 ;;** Regex
1590 (defvar ivy--regex-hash
1591 (make-hash-table :test #'equal)
1592 "Store pre-computed regex.")
1593
1594 (defun ivy--split (str)
1595 "Split STR into a list by single spaces.
1596 The remaining spaces stick to their left.
1597 This allows to \"quote\" N spaces by inputting N+1 spaces."
1598 (let ((len (length str))
1599 start0
1600 (start1 0)
1601 res s
1602 match-len)
1603 (while (and (string-match " +" str start1)
1604 (< start1 len))
1605 (setq match-len (- (match-end 0) (match-beginning 0)))
1606 (if (= match-len 1)
1607 (progn
1608 (when start0
1609 (setq start1 start0)
1610 (setq start0 nil))
1611 (push (substring str start1 (match-beginning 0)) res)
1612 (setq start1 (match-end 0)))
1613 (setq str (replace-match
1614 (make-string (1- match-len) ?\ )
1615 nil nil str))
1616 (setq start0 (or start0 start1))
1617 (setq start1 (1- (match-end 0)))))
1618 (if start0
1619 (push (substring str start0) res)
1620 (setq s (substring str start1))
1621 (unless (= (length s) 0)
1622 (push s res)))
1623 (nreverse res)))
1624
1625 (defun ivy--regex (str &optional greedy)
1626 "Re-build regex pattern from STR in case it has a space.
1627 When GREEDY is non-nil, join words in a greedy way."
1628 (let ((hashed (unless greedy
1629 (gethash str ivy--regex-hash))))
1630 (if hashed
1631 (prog1 (cdr hashed)
1632 (setq ivy--subexps (car hashed)))
1633 (when (string-match "\\([^\\]\\|^\\)\\\\$" str)
1634 (setq str (substring str 0 -1)))
1635 (cdr (puthash str
1636 (let ((subs (ivy--split str)))
1637 (if (= (length subs) 1)
1638 (cons
1639 (setq ivy--subexps 0)
1640 (car subs))
1641 (cons
1642 (setq ivy--subexps (length subs))
1643 (mapconcat
1644 (lambda (x)
1645 (if (string-match "\\`\\\\(.*\\\\)\\'" x)
1646 x
1647 (format "\\(%s\\)" x)))
1648 subs
1649 (if greedy
1650 ".*"
1651 ".*?")))))
1652 ivy--regex-hash)))))
1653
1654 (defun ivy--regex-ignore-order--part (str &optional discard)
1655 "Re-build regex from STR by splitting at spaces.
1656 Ignore the order of each group."
1657 (let* ((subs (split-string str " +" t))
1658 (len (length subs)))
1659 (cl-case len
1660 (0
1661 "")
1662 (t
1663 (mapcar (lambda (x) (cons x (not discard)))
1664 subs)))))
1665
1666 (defun ivy--regex-ignore-order (str)
1667 "Re-build regex from STR by splitting at spaces.
1668 Ignore the order of each group. Everything before \"!\" should
1669 match. Everything after \"!\" should not match."
1670 (let ((parts (split-string str "!" t)))
1671 (cl-case (length parts)
1672 (0
1673 "")
1674 (1
1675 (if (string= (substring str 0 1) "!")
1676 (list (cons "" t)
1677 (ivy--regex-ignore-order--part (car parts) t))
1678 (ivy--regex-ignore-order--part (car parts))))
1679 (2
1680 (append
1681 (ivy--regex-ignore-order--part (car parts))
1682 (ivy--regex-ignore-order--part (cadr parts) t)))
1683 (t (error "Unexpected: use only one !")))))
1684
1685 (defun ivy--regex-plus (str)
1686 "Build a regex sequence from STR.
1687 Spaces are wild card characters, everything before \"!\" should
1688 match. Everything after \"!\" should not match."
1689 (let ((parts (split-string str "!" t)))
1690 (cl-case (length parts)
1691 (0
1692 "")
1693 (1
1694 (if (string= (substring str 0 1) "!")
1695 (list (cons "" t)
1696 (list (ivy--regex (car parts))))
1697 (ivy--regex (car parts))))
1698 (2
1699 (cons
1700 (cons (ivy--regex (car parts)) t)
1701 (mapcar #'list (split-string (cadr parts) " " t))))
1702 (t (error "Unexpected: use only one !")))))
1703
1704 (defun ivy--regex-fuzzy (str)
1705 "Build a regex sequence from STR.
1706 Insert .* between each char."
1707 (if (string-match "\\`\\(\\^?\\)\\(.*?\\)\\(\\$?\\)\\'" str)
1708 (prog1
1709 (concat (match-string 1 str)
1710 (mapconcat
1711 (lambda (x)
1712 (format "\\(%c\\)" x))
1713 (string-to-list (match-string 2 str)) ".*")
1714 (match-string 3 str))
1715 (setq ivy--subexps (length (match-string 2 str))))
1716 str))
1717
1718 ;;** Rest
1719 (defun ivy--minibuffer-setup ()
1720 "Setup ivy completion in the minibuffer."
1721 (set (make-local-variable 'completion-show-inline-help) nil)
1722 (set (make-local-variable 'minibuffer-default-add-function)
1723 (lambda ()
1724 (list ivy--default)))
1725 (when (display-graphic-p)
1726 (setq truncate-lines t))
1727 (setq-local max-mini-window-height ivy-height)
1728 (add-hook 'post-command-hook #'ivy--exhibit nil t)
1729 ;; show completions with empty input
1730 (ivy--exhibit))
1731
1732 (defun ivy--input ()
1733 "Return the current minibuffer input."
1734 ;; assume one-line minibuffer input
1735 (buffer-substring-no-properties
1736 (minibuffer-prompt-end)
1737 (line-end-position)))
1738
1739 (defun ivy--cleanup ()
1740 "Delete the displayed completion candidates."
1741 (save-excursion
1742 (goto-char (minibuffer-prompt-end))
1743 (delete-region (line-end-position) (point-max))))
1744
1745 (defun ivy--insert-prompt ()
1746 "Update the prompt according to `ivy--prompt'."
1747 (when ivy--prompt
1748 (unless (memq this-command '(ivy-done ivy-alt-done ivy-partial-or-done
1749 counsel-find-symbol))
1750 (setq ivy--prompt-extra ""))
1751 (let (head tail)
1752 (if (string-match "\\(.*\\): \\'" ivy--prompt)
1753 (progn
1754 (setq head (match-string 1 ivy--prompt))
1755 (setq tail ": "))
1756 (setq head (substring ivy--prompt 0 -1))
1757 (setq tail " "))
1758 (let ((inhibit-read-only t)
1759 (std-props '(front-sticky t rear-nonsticky t field t read-only t))
1760 (n-str
1761 (concat
1762 (if (and (bound-and-true-p minibuffer-depth-indicate-mode)
1763 (> (minibuffer-depth) 1))
1764 (format "[%d] " (minibuffer-depth))
1765 "")
1766 (concat
1767 (if (string-match "%d.*%d" ivy-count-format)
1768 (format head
1769 (1+ ivy--index)
1770 (or (and (ivy-state-dynamic-collection ivy-last)
1771 ivy--full-length)
1772 ivy--length))
1773 (format head
1774 (or (and (ivy-state-dynamic-collection ivy-last)
1775 ivy--full-length)
1776 ivy--length)))
1777 ivy--prompt-extra
1778 tail)))
1779 (d-str (if ivy--directory
1780 (abbreviate-file-name ivy--directory)
1781 "")))
1782 (save-excursion
1783 (goto-char (point-min))
1784 (delete-region (point-min) (minibuffer-prompt-end))
1785 (if (> (+ (mod (+ (length n-str) (length d-str)) (window-width))
1786 (length ivy-text))
1787 (window-width))
1788 (setq n-str (concat n-str "\n" d-str))
1789 (setq n-str (concat n-str d-str)))
1790 (let ((regex (format "\\([^\n]\\{%d\\}\\)[^\n]" (window-width))))
1791 (while (string-match regex n-str)
1792 (setq n-str (replace-match (concat (match-string 1 n-str) "\n") nil t n-str 1))))
1793 (set-text-properties 0 (length n-str)
1794 `(face minibuffer-prompt ,@std-props)
1795 n-str)
1796 (ivy--set-match-props n-str "confirm"
1797 `(face ivy-confirm-face ,@std-props))
1798 (ivy--set-match-props n-str "match required"
1799 `(face ivy-match-required-face ,@std-props))
1800 (insert n-str))
1801 ;; get out of the prompt area
1802 (constrain-to-field nil (point-max))))))
1803
1804 (defun ivy--set-match-props (str match props)
1805 "Set STR text properties that match MATCH to PROPS."
1806 (when (string-match match str)
1807 (set-text-properties
1808 (match-beginning 0)
1809 (match-end 0)
1810 props
1811 str)))
1812
1813 (defvar inhibit-message)
1814
1815 (defun ivy--sort-maybe (collection)
1816 "Sort COLLECTION if needed."
1817 (let ((sort (ivy-state-sort ivy-last))
1818 entry)
1819 (if (null sort)
1820 collection
1821 (let ((sort-fn (cond ((functionp sort)
1822 sort)
1823 ((setq entry (assoc (ivy-state-collection ivy-last)
1824 ivy-sort-functions-alist))
1825 (cdr entry))
1826 (t
1827 (cdr (assoc t ivy-sort-functions-alist))))))
1828 (if (functionp sort-fn)
1829 (cl-sort (copy-sequence collection) sort-fn)
1830 collection)))))
1831
1832 (defun ivy--exhibit ()
1833 "Insert Ivy completions display.
1834 Should be run via minibuffer `post-command-hook'."
1835 (when (memq 'ivy--exhibit post-command-hook)
1836 (let ((inhibit-field-text-motion nil))
1837 (constrain-to-field nil (point-max)))
1838 (setq ivy-text (ivy--input))
1839 (if (ivy-state-dynamic-collection ivy-last)
1840 ;; while-no-input would cause annoying
1841 ;; "Waiting for process to die...done" message interruptions
1842 (let ((inhibit-message t))
1843 (unless (equal ivy--old-text ivy-text)
1844 (while-no-input
1845 (setq ivy--all-candidates
1846 (ivy--sort-maybe
1847 (funcall (ivy-state-collection ivy-last) ivy-text)))
1848 (setq ivy--old-text ivy-text)))
1849 (when ivy--all-candidates
1850 (ivy--insert-minibuffer
1851 (ivy--format ivy--all-candidates))))
1852 (cond (ivy--directory
1853 (if (string-match "/\\'" ivy-text)
1854 (if (member ivy-text ivy--all-candidates)
1855 (ivy--cd (expand-file-name ivy-text ivy--directory))
1856 (when (string-match "//\\'" ivy-text)
1857 (if (and default-directory
1858 (string-match "\\`[[:alpha:]]:/" default-directory))
1859 (ivy--cd (match-string 0 default-directory))
1860 (ivy--cd "/")))
1861 (when (string-match "[[:alpha:]]:/$" ivy-text)
1862 (let ((drive-root (match-string 0 ivy-text)))
1863 (when (file-exists-p drive-root)
1864 (ivy--cd drive-root)))))
1865 (if (string-match "\\`~\\'" ivy-text)
1866 (ivy--cd (expand-file-name "~/")))))
1867 ((eq (ivy-state-collection ivy-last) 'internal-complete-buffer)
1868 (when (or (and (string-match "\\` " ivy-text)
1869 (not (string-match "\\` " ivy--old-text)))
1870 (and (string-match "\\` " ivy--old-text)
1871 (not (string-match "\\` " ivy-text))))
1872 (setq ivy--all-candidates
1873 (if (and (> (length ivy-text) 0)
1874 (eq (aref ivy-text 0)
1875 ?\ ))
1876 (ivy--buffer-list " ")
1877 (ivy--buffer-list "" ivy-use-virtual-buffers)))
1878 (setq ivy--old-re nil))))
1879 (ivy--insert-minibuffer
1880 (with-current-buffer (ivy-state-buffer ivy-last)
1881 (ivy--format
1882 (ivy--filter ivy-text ivy--all-candidates))))
1883 (setq ivy--old-text ivy-text))))
1884
1885 (defun ivy--insert-minibuffer (text)
1886 "Insert TEXT into minibuffer with appropriate cleanup."
1887 (let ((resize-mini-windows nil)
1888 (update-fn (ivy-state-update-fn ivy-last))
1889 deactivate-mark)
1890 (ivy--cleanup)
1891 (when update-fn
1892 (funcall update-fn))
1893 (ivy--insert-prompt)
1894 ;; Do nothing if while-no-input was aborted.
1895 (when (stringp text)
1896 (let ((buffer-undo-list t))
1897 (save-excursion
1898 (forward-line 1)
1899 (insert text))))
1900 (when (display-graphic-p)
1901 (ivy--resize-minibuffer-to-fit))))
1902
1903 (defun ivy--resize-minibuffer-to-fit ()
1904 "Resize the minibuffer window size to fit the text in the minibuffer."
1905 (unless (frame-root-window-p (minibuffer-window))
1906 (with-selected-window (minibuffer-window)
1907 (if (fboundp 'window-text-pixel-size)
1908 (let ((text-height (cdr (window-text-pixel-size)))
1909 (body-height (window-body-height nil t)))
1910 (when (> text-height body-height)
1911 ;; Note: the size increment needs to be at least frame-char-height,
1912 ;; otherwise resizing won't do anything.
1913 (let ((delta (max (- text-height body-height) (frame-char-height))))
1914 (window-resize nil delta nil t t))))
1915 (let ((text-height (count-screen-lines))
1916 (body-height (window-body-height)))
1917 (when (> text-height body-height)
1918 (window-resize nil (- text-height body-height) nil t)))))))
1919
1920 (declare-function colir-blend-face-background "ext:colir")
1921
1922 (defun ivy--add-face (str face)
1923 "Propertize STR with FACE.
1924 `font-lock-append-text-property' is used, since it's better than
1925 `propertize' or `add-face-text-property' in this case."
1926 (require 'colir)
1927 (condition-case nil
1928 (progn
1929 (colir-blend-face-background 0 (length str) face str)
1930 (let ((foreground (face-foreground face)))
1931 (when foreground
1932 (add-face-text-property
1933 0 (length str)
1934 `(:foreground ,foreground)
1935 nil
1936 str))))
1937 (error
1938 (ignore-errors
1939 (font-lock-append-text-property 0 (length str) 'face face str))))
1940 str)
1941
1942 (declare-function flx-make-string-cache "ext:flx")
1943 (declare-function flx-score "ext:flx")
1944
1945 (defvar ivy--flx-cache nil)
1946
1947 (eval-after-load 'flx
1948 '(setq ivy--flx-cache (flx-make-string-cache)))
1949
1950 (defun ivy-toggle-case-fold ()
1951 "Toggle the case folding between nil and auto.
1952 In any completion session, the case folding starts in auto:
1953
1954 - when the input is all lower case, `case-fold-search' is t
1955 - otherwise nil.
1956
1957 You can toggle this to make `case-fold-search' nil regardless of input."
1958 (interactive)
1959 (setq ivy-case-fold-search
1960 (if ivy-case-fold-search
1961 nil
1962 'auto))
1963 ;; reset cache so that the candidate list updates
1964 (setq ivy--old-re nil))
1965
1966 (defun ivy--re-filter (re candidates)
1967 "Return all RE matching CANDIDATES.
1968 RE is a list of cons cells, with a regexp car and a boolean cdr.
1969 When the cdr is t, the car must match.
1970 Otherwise, the car must not match."
1971 (let ((re-list (if (stringp re) (list (cons re t)) re))
1972 (res candidates))
1973 (dolist (re re-list)
1974 (setq res
1975 (ignore-errors
1976 (funcall
1977 (if (cdr re)
1978 #'cl-remove-if-not
1979 #'cl-remove-if)
1980 (let ((re-str (car re)))
1981 (lambda (x) (string-match re-str x)))
1982 res))))
1983 res))
1984
1985 (defun ivy--filter (name candidates)
1986 "Return all items that match NAME in CANDIDATES.
1987 CANDIDATES are assumed to be static."
1988 (let ((re (funcall ivy--regex-function name)))
1989 (if (and (equal re ivy--old-re)
1990 ivy--old-cands)
1991 ;; quick caching for "C-n", "C-p" etc.
1992 ivy--old-cands
1993 (let* ((re-str (if (listp re) (caar re) re))
1994 (matcher (ivy-state-matcher ivy-last))
1995 (case-fold-search
1996 (and ivy-case-fold-search
1997 (string= name (downcase name))))
1998 (cands (cond
1999 (matcher
2000 (funcall matcher re candidates))
2001 ((and ivy--old-re
2002 (stringp re)
2003 (stringp ivy--old-re)
2004 (not (string-match "\\\\" ivy--old-re))
2005 (not (equal ivy--old-re ""))
2006 (memq (cl-search
2007 (if (string-match "\\\\)\\'" ivy--old-re)
2008 (substring ivy--old-re 0 -2)
2009 ivy--old-re)
2010 re)
2011 '(0 2)))
2012 (ignore-errors
2013 (cl-remove-if-not
2014 (lambda (x) (string-match re x))
2015 ivy--old-cands)))
2016 (t
2017 (ivy--re-filter re candidates)))))
2018 (ivy--recompute-index name re-str cands)
2019 (setq ivy--old-re
2020 (if (eq ivy--regex-function 'ivy--regex-ignore-order)
2021 re
2022 (if cands
2023 re-str
2024 "")))
2025 (setq ivy--old-cands (ivy--sort name cands))))))
2026
2027 (defun ivy--set-candidates (x)
2028 "Update `ivy--all-candidates' with X."
2029 (let (res)
2030 (dolist (source ivy--extra-candidates)
2031 (if (equal source '(original-source))
2032 (if (null res)
2033 (setq res x)
2034 (setq res (append x res)))
2035 (setq ivy--old-re nil)
2036 (setq res (append
2037 (ivy--filter ivy-text (cadr source))
2038 res))))
2039 (setq ivy--all-candidates res)))
2040
2041 (defcustom ivy-sort-matches-functions-alist '((t . nil))
2042 "An alist of functions for sorting matching candidates.
2043
2044 Unlike `ivy-sort-functions-alist', which is used to sort the
2045 whole collection only once, this alist of functions are used to
2046 sort only matching candidates after each change in input.
2047
2048 The alist KEY is either a collection function or t to match
2049 previously unmatched collection functions.
2050
2051 The alist VAL is a sorting function with the signature of
2052 `ivy--prefix-sort'.")
2053
2054 (defun ivy--sort-files-by-date (_name candidates)
2055 "Re-soft CANDIDATES according to file modification date."
2056 (let ((default-directory ivy--directory))
2057 (cl-sort (copy-sequence candidates)
2058 (lambda (f1 f2)
2059 (time-less-p
2060 (nth 5 (file-attributes f2))
2061 (nth 5 (file-attributes f1)))))))
2062
2063 (defun ivy--sort (name candidates)
2064 "Re-sort CANDIDATES by NAME.
2065 All CANDIDATES are assumed to match NAME."
2066 (let ((key (or (ivy-state-caller ivy-last)
2067 (when (functionp (ivy-state-collection ivy-last))
2068 (ivy-state-collection ivy-last))))
2069 fun)
2070 (cond ((and (require 'flx nil 'noerror)
2071 (eq ivy--regex-function 'ivy--regex-fuzzy))
2072 (ivy--flx-sort name candidates))
2073 ((setq fun (cdr (or (assoc key ivy-sort-matches-functions-alist)
2074 (assoc t ivy-sort-matches-functions-alist))))
2075 (funcall fun name candidates))
2076 (t
2077 candidates))))
2078
2079 (defun ivy--prefix-sort (name candidates)
2080 "Re-sort CANDIDATES.
2081 Prefix matches to NAME are put ahead of the list."
2082 (if (or (string-match "^\\^" name) (string= name ""))
2083 candidates
2084 (let ((re-prefix (concat "^" (funcall ivy--regex-function name)))
2085 res-prefix
2086 res-noprefix)
2087 (dolist (s candidates)
2088 (if (string-match re-prefix s)
2089 (push s res-prefix)
2090 (push s res-noprefix)))
2091 (nconc
2092 (nreverse res-prefix)
2093 (nreverse res-noprefix)))))
2094
2095 (defun ivy--recompute-index (name re-str cands)
2096 (let* ((caller (ivy-state-caller ivy-last))
2097 (func (or (and caller (cdr (assoc caller ivy-index-functions-alist)))
2098 (cdr (assoc t ivy-index-functions-alist))
2099 #'ivy-recompute-index-zero)))
2100 (unless (eq this-command 'ivy-resume)
2101 (setq ivy--index
2102 (or
2103 (cl-position (if (and (> (length name) 0)
2104 (eq ?^ (aref name 0)))
2105 (substring name 1)
2106 name) cands
2107 :test #'equal)
2108 (and ivy--directory
2109 (cl-position
2110 (concat re-str "/") cands
2111 :test #'equal))
2112 (and (not (string= name ""))
2113 (not (and (require 'flx nil 'noerror)
2114 (eq ivy--regex-function 'ivy--regex-fuzzy)
2115 (< (length cands) 200)))
2116
2117 (cl-position (nth ivy--index ivy--old-cands)
2118 cands))
2119 (funcall func re-str cands))))
2120 (when (and (or (string= name "")
2121 (string= name "^"))
2122 (not (equal ivy--old-re "")))
2123 (setq ivy--index
2124 (or (ivy--preselect-index
2125 (ivy-state-preselect ivy-last)
2126 cands)
2127 ivy--index)))))
2128
2129 (defun ivy-recompute-index-swiper (_re-str cands)
2130 (let ((tail (nthcdr ivy--index ivy--old-cands))
2131 idx)
2132 (if (and tail ivy--old-cands (not (equal "^" ivy--old-re)))
2133 (progn
2134 (while (and tail (null idx))
2135 ;; Compare with eq to handle equal duplicates in cands
2136 (setq idx (cl-position (pop tail) cands)))
2137 (or
2138 idx
2139 (1- (length cands))))
2140 (if ivy--old-cands
2141 ivy--index
2142 ;; already in ivy-state-buffer
2143 (let ((n (line-number-at-pos))
2144 (res 0)
2145 (i 0))
2146 (dolist (c cands)
2147 (when (eq n (read (get-text-property 0 'display c)))
2148 (setq res i))
2149 (cl-incf i))
2150 res)))))
2151
2152 (defun ivy-recompute-index-swiper-async (_re-str cands)
2153 (let ((tail (nthcdr ivy--index ivy--old-cands))
2154 idx)
2155 (if (and tail ivy--old-cands (not (equal "^" ivy--old-re)))
2156 (progn
2157 (while (and tail (null idx))
2158 ;; Compare with `equal', since the collection is re-created
2159 ;; each time with `split-string'
2160 (setq idx (cl-position (pop tail) cands :test #'equal)))
2161 (or idx 0))
2162 ivy--index)))
2163
2164 (defun ivy-recompute-index-zero (_re-str _cands)
2165 0)
2166
2167 (defcustom ivy-minibuffer-faces
2168 '(ivy-minibuffer-match-face-1
2169 ivy-minibuffer-match-face-2
2170 ivy-minibuffer-match-face-3
2171 ivy-minibuffer-match-face-4)
2172 "List of `ivy' faces for minibuffer group matches.")
2173
2174 (defvar ivy-flx-limit 200
2175 "Used to conditionally turn off flx sorting.
2176
2177 When the amount of matching candidates exceeds this limit, then
2178 no sorting is done.")
2179
2180 (defun ivy--flx-sort (name cands)
2181 "Sort according to closeness to string NAME the string list CANDS."
2182 (condition-case nil
2183 (if (and cands
2184 (< (length cands) ivy-flx-limit))
2185 (let* ((flx-name (if (string-match "^\\^" name)
2186 (substring name 1)
2187 name))
2188 (cands-with-score
2189 (delq nil
2190 (mapcar
2191 (lambda (x)
2192 (let ((score (flx-score x flx-name ivy--flx-cache)))
2193 (and score
2194 (cons score x))))
2195 cands))))
2196 (if cands-with-score
2197 (mapcar (lambda (x)
2198 (let ((str (copy-sequence (cdr x)))
2199 (i 0)
2200 (last-j -2))
2201 (dolist (j (cdar x))
2202 (unless (eq j (1+ last-j))
2203 (cl-incf i))
2204 (setq last-j j)
2205 (ivy-add-face-text-property
2206 j (1+ j)
2207 (nth (1+ (mod (+ i 2) (1- (length ivy-minibuffer-faces))))
2208 ivy-minibuffer-faces)
2209 str))
2210 str))
2211 (sort cands-with-score
2212 (lambda (x y)
2213 (> (caar x) (caar y)))))
2214 cands))
2215 cands)
2216 (error
2217 cands)))
2218
2219 (defcustom ivy-format-function 'ivy-format-function-default
2220 "Function to transform the list of candidates into a string.
2221 This string is inserted into the minibuffer."
2222 :type '(choice
2223 (const :tag "Default" ivy-format-function-default)
2224 (const :tag "Arrow prefix" ivy-format-function-arrow)
2225 (const :tag "Full line" ivy-format-function-line)))
2226
2227 (defun ivy--truncate-string (str width)
2228 "Truncate STR to WIDTH."
2229 (if (> (string-width str) width)
2230 (concat (substring str 0 (min (- width 3)
2231 (- (length str) 3))) "...")
2232 str))
2233
2234 (defun ivy--format-function-generic (selected-fn other-fn cand-pairs separator)
2235 "Transform CAND-PAIRS into a string for minibuffer.
2236 SELECTED-FN and OTHER-FN each take two string arguments.
2237 SEPARATOR is used to join the candidates."
2238 (let ((i -1))
2239 (mapconcat
2240 (lambda (pair)
2241 (let ((str (car pair))
2242 (extra (cdr pair))
2243 (curr (eq (cl-incf i) ivy--index)))
2244 (if curr
2245 (funcall selected-fn str extra)
2246 (funcall other-fn str extra))))
2247 cand-pairs
2248 separator)))
2249
2250 (defun ivy-format-function-default (cand-pairs)
2251 "Transform CAND-PAIRS into a string for minibuffer."
2252 (ivy--format-function-generic
2253 (lambda (str extra)
2254 (concat (ivy--add-face str 'ivy-current-match) extra))
2255 #'concat
2256 cand-pairs
2257 "\n"))
2258
2259 (defun ivy-format-function-arrow (cand-pairs)
2260 "Transform CAND-PAIRS into a string for minibuffer."
2261 (ivy--format-function-generic
2262 (lambda (str extra)
2263 (concat "> " (ivy--add-face str 'ivy-current-match) extra))
2264 (lambda (str extra)
2265 (concat " " str extra))
2266 cand-pairs
2267 "\n"))
2268
2269 (defun ivy-format-function-line (cand-pairs)
2270 "Transform CAND-PAIRS into a string for minibuffer."
2271 (ivy--format-function-generic
2272 (lambda (str extra)
2273 (ivy--add-face (concat str extra "\n") 'ivy-current-match))
2274 (lambda (str extra)
2275 (concat str extra "\n"))
2276 cand-pairs
2277 ""))
2278
2279 (defun ivy-add-face-text-property (start end face str)
2280 (if (fboundp 'add-face-text-property)
2281 (add-face-text-property
2282 start end face nil str)
2283 (font-lock-append-text-property
2284 start end 'face face str)))
2285
2286 (defun ivy--format-minibuffer-line (str)
2287 (let ((start 0)
2288 (str (copy-sequence str)))
2289 (cond ((eq ivy--regex-function 'ivy--regex-ignore-order)
2290 (when (consp ivy--old-re)
2291 (let ((i 1))
2292 (dolist (re ivy--old-re)
2293 (when (string-match (car re) str)
2294 (ivy-add-face-text-property
2295 (match-beginning 0) (match-end 0)
2296 (nth (1+ (mod (+ i 2) (1- (length ivy-minibuffer-faces))))
2297 ivy-minibuffer-faces)
2298 str))
2299 (cl-incf i)))))
2300 ((and (eq ivy-display-style 'fancy)
2301 (not (eq ivy--regex-function 'ivy--regex-fuzzy)))
2302 (unless ivy--old-re
2303 (setq ivy--old-re (funcall ivy--regex-function ivy-text)))
2304 (while (and (string-match ivy--old-re str start)
2305 (> (- (match-end 0) (match-beginning 0)) 0))
2306 (setq start (match-end 0))
2307 (let ((i 0))
2308 (while (<= i ivy--subexps)
2309 (let ((face
2310 (cond ((zerop ivy--subexps)
2311 (cadr ivy-minibuffer-faces))
2312 ((zerop i)
2313 (car ivy-minibuffer-faces))
2314 (t
2315 (nth (1+ (mod (+ i 2) (1- (length ivy-minibuffer-faces))))
2316 ivy-minibuffer-faces)))))
2317 (ivy-add-face-text-property
2318 (match-beginning i) (match-end i)
2319 face str))
2320 (cl-incf i))))))
2321 str))
2322
2323 (defun ivy--format (cands)
2324 "Return a string for CANDS suitable for display in the minibuffer.
2325 CANDS is a list of strings."
2326 (setq ivy--length (length cands))
2327 (when (>= ivy--index ivy--length)
2328 (setq ivy--index (max (1- ivy--length) 0)))
2329 (if (null cands)
2330 (setq ivy--current "")
2331 (let* ((half-height (/ ivy-height 2))
2332 (start (max 0 (- ivy--index half-height)))
2333 (end (min (+ start (1- ivy-height)) ivy--length))
2334 (start (max 0 (min start (- end (1- ivy-height)))))
2335 (cands (cl-subseq cands start end))
2336 (index (- ivy--index start)))
2337 (cond (ivy--directory
2338 (setq cands (mapcar (lambda (x)
2339 (if (string-match-p "/\\'" x)
2340 (propertize x 'face 'ivy-subdir)
2341 x))
2342 cands)))
2343 ((eq (ivy-state-collection ivy-last) 'internal-complete-buffer)
2344 (setq cands (mapcar (lambda (x)
2345 (let ((b (get-buffer x)))
2346 (if (and b
2347 (buffer-file-name b)
2348 (buffer-modified-p b))
2349 (propertize x 'face 'ivy-modified-buffer)
2350 x)))
2351 cands))))
2352 (setq ivy--current (copy-sequence (nth index cands)))
2353 (let* ((ivy--index index)
2354 (cand-pairs (mapcar
2355 (lambda (cand)
2356 (cons (ivy--format-minibuffer-line cand) nil)) cands))
2357 (res (concat "\n" (funcall ivy-format-function cand-pairs))))
2358 (put-text-property 0 (length res) 'read-only nil res)
2359 res))))
2360
2361 (defvar ivy--virtual-buffers nil
2362 "Store the virtual buffers alist.")
2363
2364 (defvar recentf-list)
2365
2366 (defcustom ivy-virtual-abbreviate 'name
2367 "The mode of abbreviation for virtual buffer names."
2368 :type '(choice
2369 (const :tag "Only name" name)
2370 (const :tag "Full path" full)
2371 ;; eventually, uniquify
2372 ))
2373
2374 (defun ivy--virtual-buffers ()
2375 "Adapted from `ido-add-virtual-buffers-to-list'."
2376 (unless recentf-mode
2377 (recentf-mode 1))
2378 (let ((bookmarks (and (boundp 'bookmark-alist)
2379 bookmark-alist))
2380 virtual-buffers name)
2381 (dolist (head (append
2382 recentf-list
2383 (delete " - no file -"
2384 (delq nil (mapcar (lambda (bookmark)
2385 (cdr (assoc 'filename bookmark)))
2386 bookmarks)))))
2387 (setq name
2388 (if (eq ivy-virtual-abbreviate 'name)
2389 (file-name-nondirectory head)
2390 (expand-file-name head)))
2391 (when (equal name "")
2392 (setq name (file-name-nondirectory (directory-file-name head))))
2393 (when (equal name "")
2394 (setq name head))
2395 (and (not (equal name ""))
2396 (null (get-file-buffer head))
2397 (not (assoc name virtual-buffers))
2398 (push (cons name head) virtual-buffers)))
2399 (when virtual-buffers
2400 (dolist (comp virtual-buffers)
2401 (put-text-property 0 (length (car comp))
2402 'face 'ivy-virtual
2403 (car comp)))
2404 (setq ivy--virtual-buffers (nreverse virtual-buffers))
2405 (mapcar #'car ivy--virtual-buffers))))
2406
2407 (defcustom ivy-ignore-buffers nil
2408 "List of regexps matching buffer names to ignore."
2409 :type '(repeat regexp))
2410
2411 (defun ivy--buffer-list (str &optional virtual)
2412 "Return the buffers that match STR.
2413 When VIRTUAL is non-nil, add virtual buffers."
2414 (delete-dups
2415 (append
2416 (mapcar
2417 (lambda (x)
2418 (if (with-current-buffer x
2419 (file-remote-p
2420 (abbreviate-file-name default-directory)))
2421 (propertize x 'face 'ivy-remote)
2422 x))
2423 (all-completions str 'internal-complete-buffer))
2424 (and virtual
2425 (ivy--virtual-buffers)))))
2426
2427 (defun ivy--switch-buffer-action (buffer)
2428 "Switch to BUFFER.
2429 BUFFER may be a string or nil."
2430 (with-ivy-window
2431 (if (zerop (length buffer))
2432 (switch-to-buffer
2433 ivy-text nil 'force-same-window)
2434 (let ((virtual (assoc buffer ivy--virtual-buffers)))
2435 (if (and virtual
2436 (not (get-buffer buffer)))
2437 (find-file (cdr virtual))
2438 (switch-to-buffer
2439 buffer nil 'force-same-window))))))
2440
2441 (defun ivy--switch-buffer-other-window-action (buffer)
2442 "Switch to BUFFER in other window.
2443 BUFFER may be a string or nil."
2444 (if (zerop (length buffer))
2445 (switch-to-buffer-other-window ivy-text)
2446 (let ((virtual (assoc buffer ivy--virtual-buffers)))
2447 (if (and virtual
2448 (not (get-buffer buffer)))
2449 (find-file-other-window (cdr virtual))
2450 (switch-to-buffer-other-window buffer)))))
2451
2452 (defun ivy--rename-buffer-action (buffer)
2453 "Rename BUFFER."
2454 (let ((new-name (read-string "Rename buffer (to new name): ")))
2455 (with-current-buffer buffer
2456 (rename-buffer new-name))))
2457
2458 (defvar ivy-switch-buffer-map (make-sparse-keymap))
2459
2460 (ivy-set-actions
2461 'ivy-switch-buffer
2462 '(("k"
2463 (lambda (x)
2464 (kill-buffer x)
2465 (ivy--reset-state ivy-last))
2466 "kill")
2467 ("j"
2468 ivy--switch-buffer-other-window-action
2469 "other")
2470 ("r"
2471 ivy--rename-buffer-action
2472 "rename")))
2473
2474 (defun ivy--switch-buffer-matcher (regexp candidates)
2475 "Return REGEXP-matching CANDIDATES.
2476 Skip buffers that match `ivy-ignore-buffers'."
2477 (let ((res (ivy--re-filter regexp candidates)))
2478 (if (or (null ivy-use-ignore)
2479 (null ivy-ignore-buffers))
2480 res
2481 (or (cl-remove-if
2482 (lambda (buf)
2483 (cl-find-if
2484 (lambda (regexp)
2485 (string-match regexp buf))
2486 ivy-ignore-buffers))
2487 res)
2488 res))))
2489
2490 ;;;###autoload
2491 (defun ivy-switch-buffer ()
2492 "Switch to another buffer."
2493 (interactive)
2494 (if (not ivy-mode)
2495 (call-interactively 'switch-to-buffer)
2496 (let ((this-command 'ivy-switch-buffer))
2497 (ivy-read "Switch to buffer: " 'internal-complete-buffer
2498 :matcher #'ivy--switch-buffer-matcher
2499 :preselect (buffer-name (other-buffer (current-buffer)))
2500 :action #'ivy--switch-buffer-action
2501 :keymap ivy-switch-buffer-map
2502 :caller 'ivy-switch-buffer))))
2503
2504 ;;;###autoload
2505 (defun ivy-switch-buffer-other-window ()
2506 "Switch to another buffer in another window."
2507 (interactive)
2508 (ivy-read "Switch to buffer in other window: " 'internal-complete-buffer
2509 :preselect (buffer-name (other-buffer (current-buffer)))
2510 :action #'ivy--switch-buffer-other-window-action
2511 :keymap ivy-switch-buffer-map
2512 :caller 'ivy-switch-buffer-other-window))
2513
2514 ;;;###autoload
2515 (defun ivy-recentf ()
2516 "Find a file on `recentf-list'."
2517 (interactive)
2518 (ivy-read "Recentf: " recentf-list
2519 :action
2520 (lambda (f)
2521 (with-ivy-window
2522 (find-file f)))
2523 :caller 'ivy-recentf))
2524
2525 (defun ivy-yank-word ()
2526 "Pull next word from buffer into search string."
2527 (interactive)
2528 (let (amend)
2529 (with-ivy-window
2530 (let ((pt (point))
2531 (le (line-end-position)))
2532 (forward-word 1)
2533 (if (> (point) le)
2534 (goto-char pt)
2535 (setq amend (buffer-substring-no-properties pt (point))))))
2536 (when amend
2537 (insert (replace-regexp-in-string " +" " " amend)))))
2538
2539 (defun ivy-kill-ring-save ()
2540 "Store the current candidates into the kill ring.
2541 If the region is active, forward to `kill-ring-save' instead."
2542 (interactive)
2543 (if (region-active-p)
2544 (call-interactively 'kill-ring-save)
2545 (kill-new
2546 (mapconcat
2547 #'identity
2548 ivy--old-cands
2549 "\n"))))
2550
2551 (defun ivy-insert-current ()
2552 "Make the current candidate into current input.
2553 Don't finish completion."
2554 (interactive)
2555 (delete-minibuffer-contents)
2556 (if (and ivy--directory
2557 (string-match "/$" ivy--current))
2558 (insert (substring ivy--current 0 -1))
2559 (insert ivy--current)))
2560
2561 (defun ivy-toggle-fuzzy ()
2562 "Toggle the re builder between `ivy--regex-fuzzy' and `ivy--regex-plus'."
2563 (interactive)
2564 (setq ivy--old-re nil)
2565 (if (eq ivy--regex-function 'ivy--regex-fuzzy)
2566 (setq ivy--regex-function 'ivy--regex-plus)
2567 (setq ivy--regex-function 'ivy--regex-fuzzy)))
2568
2569 (defun ivy-reverse-i-search ()
2570 "Enter a recursive `ivy-read' session using the current history.
2571 The selected history element will be inserted into the minibuffer."
2572 (interactive)
2573 (let ((enable-recursive-minibuffers t)
2574 (history (symbol-value (ivy-state-history ivy-last)))
2575 (old-last ivy-last)
2576 (ivy-recursive-restore nil))
2577 (ivy-read "Reverse-i-search: "
2578 history
2579 :action (lambda (x)
2580 (ivy--reset-state
2581 (setq ivy-last old-last))
2582 (delete-minibuffer-contents)
2583 (insert (substring-no-properties x))
2584 (ivy--cd-maybe)))))
2585
2586 (defun ivy-restrict-to-matches ()
2587 "Restrict candidates to current matches and erase input."
2588 (interactive)
2589 (delete-minibuffer-contents)
2590 (setq ivy--all-candidates
2591 (ivy--filter ivy-text ivy--all-candidates)))
2592
2593 ;;* Occur
2594 (defvar-local ivy-occur-last nil
2595 "Buffer-local value of `ivy-last'.
2596 Can't re-use `ivy-last' because using e.g. `swiper' in the same
2597 buffer would modify `ivy-last'.")
2598
2599 (defvar ivy-occur-mode-map
2600 (let ((map (make-sparse-keymap)))
2601 (define-key map [mouse-1] 'ivy-occur-click)
2602 (define-key map (kbd "RET") 'ivy-occur-press)
2603 (define-key map (kbd "j") 'next-line)
2604 (define-key map (kbd "k") 'previous-line)
2605 (define-key map (kbd "h") 'backward-char)
2606 (define-key map (kbd "l") 'forward-char)
2607 (define-key map (kbd "g") 'ivy-occur-press)
2608 (define-key map (kbd "a") 'ivy-occur-read-action)
2609 (define-key map (kbd "o") 'ivy-occur-dispatch)
2610 (define-key map (kbd "q") 'quit-window)
2611 map)
2612 "Keymap for Ivy Occur mode.")
2613
2614 (define-derived-mode ivy-occur-mode fundamental-mode "Ivy-Occur"
2615 "Major mode for output from \\[ivy-occur].
2616
2617 \\{ivy-occur-mode-map}")
2618
2619 (defvar ivy-occur-grep-mode-map
2620 (let ((map (copy-keymap ivy-occur-mode-map)))
2621 (define-key map (kbd "C-x C-q") 'ivy-wgrep-change-to-wgrep-mode)
2622 map)
2623 "Keymap for Ivy Occur Grep mode.")
2624
2625 (define-derived-mode ivy-occur-grep-mode grep-mode "Ivy-Occur"
2626 "Major mode for output from \\[ivy-occur].
2627
2628 \\{ivy-occur-grep-mode-map}")
2629
2630 (defvar ivy--occurs-list nil
2631 "A list of custom occur generators per command.")
2632
2633 (defun ivy-set-occur (cmd occur)
2634 "Assign CMD a custom OCCUR function."
2635 (setq ivy--occurs-list
2636 (plist-put ivy--occurs-list cmd occur)))
2637
2638 (defun ivy--occur-insert-lines (cands)
2639 (dolist (str cands)
2640 (add-text-properties
2641 0 (length str)
2642 `(mouse-face
2643 highlight
2644 help-echo "mouse-1: call ivy-action")
2645 str)
2646 (insert str "\n")))
2647
2648 (defun ivy-occur ()
2649 "Stop completion and put the current matches into a new buffer.
2650
2651 The new buffer remembers current action(s).
2652
2653 While in the *ivy-occur* buffer, selecting a candidate with RET or
2654 a mouse click will call the appropriate action for that candidate.
2655
2656 There is no limit on the number of *ivy-occur* buffers."
2657 (interactive)
2658 (let* ((caller (ivy-state-caller ivy-last))
2659 (occur-fn (plist-get ivy--occurs-list caller))
2660 (buffer
2661 (generate-new-buffer
2662 (format "*ivy-occur%s \"%s\"*"
2663 (if caller
2664 (concat " " (prin1-to-string caller))
2665 "")
2666 ivy-text))))
2667 (with-current-buffer buffer
2668 (let ((inhibit-read-only t))
2669 (erase-buffer)
2670 (if occur-fn
2671 (funcall occur-fn)
2672 (ivy-occur-mode)
2673 (insert (format "%d candidates:\n" (length ivy--old-cands)))
2674 (ivy--occur-insert-lines
2675 (mapcar
2676 (lambda (cand) (concat " " cand))
2677 ivy--old-cands))))
2678 (setf (ivy-state-text ivy-last) ivy-text)
2679 (setq ivy-occur-last ivy-last)
2680 (setq-local ivy--directory ivy--directory))
2681 (ivy-exit-with-action
2682 `(lambda (_) (pop-to-buffer ,buffer)))))
2683
2684 (declare-function wgrep-change-to-wgrep-mode "ext:wgrep")
2685
2686 (defun ivy-wgrep-change-to-wgrep-mode ()
2687 "Forward to `wgrep-change-to-wgrep-mode'."
2688 (interactive)
2689 (if (require 'wgrep nil 'noerror)
2690 (wgrep-change-to-wgrep-mode)
2691 (error "Package wgrep isn't installed")))
2692
2693 (defun ivy-occur-read-action ()
2694 "Select one of the available actions as the current one."
2695 (interactive)
2696 (let ((ivy-last ivy-occur-last))
2697 (ivy-read-action)))
2698
2699 (defun ivy-occur-dispatch ()
2700 "Call one of the available actions on the current item."
2701 (interactive)
2702 (let* ((state-action (ivy-state-action ivy-occur-last))
2703 (actions (if (symbolp state-action)
2704 state-action
2705 (copy-sequence state-action))))
2706 (unwind-protect
2707 (progn
2708 (ivy-occur-read-action)
2709 (ivy-occur-press))
2710 (setf (ivy-state-action ivy-occur-last) actions))))
2711
2712 (defun ivy-occur-click (event)
2713 "Execute action for the current candidate.
2714 EVENT gives the mouse position."
2715 (interactive "e")
2716 (let ((window (posn-window (event-end event)))
2717 (pos (posn-point (event-end event))))
2718 (with-current-buffer (window-buffer window)
2719 (goto-char pos)
2720 (ivy-occur-press))))
2721
2722 (declare-function swiper--cleanup "swiper")
2723 (declare-function swiper--add-overlays "swiper")
2724
2725 (defun ivy-occur-press ()
2726 "Execute action for the current candidate."
2727 (interactive)
2728 (require 'pulse)
2729 (when (save-excursion
2730 (beginning-of-line)
2731 (looking-at "\\(?:./\\| \\)\\(.*\\)$"))
2732 (let* ((ivy-last ivy-occur-last)
2733 (ivy-text (ivy-state-text ivy-last))
2734 (str (buffer-substring
2735 (match-beginning 1)
2736 (match-end 1)))
2737 (coll (ivy-state-collection ivy-last))
2738 (action (ivy--get-action ivy-last))
2739 (ivy-exit 'done))
2740 (with-ivy-window
2741 (funcall action
2742 (if (and (consp coll)
2743 (consp (car coll)))
2744 (cdr (assoc str coll))
2745 str))
2746 (if (memq (ivy-state-caller ivy-last)
2747 '(swiper counsel-git-grep))
2748 (with-current-buffer (window-buffer (selected-window))
2749 (swiper--cleanup)
2750 (swiper--add-overlays
2751 (ivy--regex ivy-text)
2752 (line-beginning-position)
2753 (line-end-position)
2754 (selected-window))
2755 (run-at-time 0.5 nil 'swiper--cleanup))
2756 (pulse-momentary-highlight-one-line (point)))))))
2757
2758 (defvar ivy-help-file (let ((default-directory
2759 (if load-file-name
2760 (file-name-directory load-file-name)
2761 default-directory)))
2762 (if (file-exists-p "ivy-help.org")
2763 (expand-file-name "ivy-help.org")
2764 (if (file-exists-p "doc/ivy-help.org")
2765 (expand-file-name "doc/ivy-help.org"))))
2766 "The file for `ivy-help'.")
2767
2768 (defun ivy-help ()
2769 "Help for `ivy'."
2770 (interactive)
2771 (let ((buf (get-buffer "*Ivy Help*")))
2772 (unless buf
2773 (setq buf (get-buffer-create "*Ivy Help*"))
2774 (with-current-buffer buf
2775 (insert-file-contents ivy-help-file)
2776 (org-mode)
2777 (view-mode)
2778 (goto-char (point-min))))
2779 (if (eq this-command 'ivy-help)
2780 (switch-to-buffer buf)
2781 (with-ivy-window
2782 (pop-to-buffer buf)))
2783 (view-mode)
2784 (goto-char (point-min))))
2785
2786 (provide 'ivy)
2787
2788 ;;; ivy.el ends here