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