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