]> code.delx.au - gnu-emacs-elpa/blob - ivy.el
Use Ivy to browse eshell and shell history entries
[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 (setq match-len (- (match-end 0) (match-beginning 0)))
1684 (if (= match-len 1)
1685 (progn
1686 (when start0
1687 (setq start1 start0)
1688 (setq start0 nil))
1689 (push (substring str start1 (match-beginning 0)) res)
1690 (setq start1 (match-end 0)))
1691 (setq str (replace-match
1692 (make-string (1- match-len) ?\ )
1693 nil nil str))
1694 (setq start0 (or start0 start1))
1695 (setq start1 (1- (match-end 0)))))
1696 (if start0
1697 (push (substring str start0) res)
1698 (setq s (substring str start1))
1699 (unless (= (length s) 0)
1700 (push s res)))
1701 (nreverse res)))
1702
1703 (defun ivy--regex (str &optional greedy)
1704 "Re-build regex pattern from STR in case it has a space.
1705 When GREEDY is non-nil, join words in a greedy way."
1706 (let ((hashed (unless greedy
1707 (gethash str ivy--regex-hash))))
1708 (if hashed
1709 (prog1 (cdr hashed)
1710 (setq ivy--subexps (car hashed)))
1711 (when (string-match "\\([^\\]\\|^\\)\\\\$" str)
1712 (setq str (substring str 0 -1)))
1713 (cdr (puthash str
1714 (let ((subs (ivy--split str)))
1715 (if (= (length subs) 1)
1716 (cons
1717 (setq ivy--subexps 0)
1718 (car subs))
1719 (cons
1720 (setq ivy--subexps (length subs))
1721 (mapconcat
1722 (lambda (x)
1723 (if (string-match "\\`\\\\([^?].*\\\\)\\'" x)
1724 x
1725 (format "\\(%s\\)" x)))
1726 subs
1727 (if greedy
1728 ".*"
1729 ".*?")))))
1730 ivy--regex-hash)))))
1731
1732 (defun ivy--regex-ignore-order--part (str &optional discard)
1733 "Re-build regex from STR by splitting at spaces.
1734 Ignore the order of each group."
1735 (let* ((subs (split-string str " +" t))
1736 (len (length subs)))
1737 (cl-case len
1738 (0
1739 "")
1740 (t
1741 (mapcar (lambda (x) (cons x (not discard)))
1742 subs)))))
1743
1744 (defun ivy--regex-ignore-order (str)
1745 "Re-build regex from STR by splitting at spaces.
1746 Ignore the order of each group. Everything before \"!\" should
1747 match. Everything after \"!\" should not match."
1748 (let ((parts (split-string str "!" t)))
1749 (cl-case (length parts)
1750 (0
1751 "")
1752 (1
1753 (if (string= (substring str 0 1) "!")
1754 (list (cons "" t)
1755 (ivy--regex-ignore-order--part (car parts) t))
1756 (ivy--regex-ignore-order--part (car parts))))
1757 (2
1758 (append
1759 (ivy--regex-ignore-order--part (car parts))
1760 (ivy--regex-ignore-order--part (cadr parts) t)))
1761 (t (error "Unexpected: use only one !")))))
1762
1763 (defun ivy--regex-plus (str)
1764 "Build a regex sequence from STR.
1765 Spaces are wild card characters, everything before \"!\" should
1766 match. Everything after \"!\" should not match."
1767 (let ((parts (split-string str "!" t)))
1768 (cl-case (length parts)
1769 (0
1770 "")
1771 (1
1772 (if (string= (substring str 0 1) "!")
1773 (list (cons "" t)
1774 (list (ivy--regex (car parts))))
1775 (ivy--regex (car parts))))
1776 (2
1777 (cons
1778 (cons (ivy--regex (car parts)) t)
1779 (mapcar #'list (split-string (cadr parts) " " t))))
1780 (t (error "Unexpected: use only one !")))))
1781
1782 (defun ivy--regex-fuzzy (str)
1783 "Build a regex sequence from STR.
1784 Insert .* between each char."
1785 (if (string-match "\\`\\(\\^?\\)\\(.*?\\)\\(\\$?\\)\\'" str)
1786 (prog1
1787 (concat (match-string 1 str)
1788 (mapconcat
1789 (lambda (x)
1790 (format "\\(%c\\)" x))
1791 (string-to-list (match-string 2 str)) ".*")
1792 (match-string 3 str))
1793 (setq ivy--subexps (length (match-string 2 str))))
1794 str))
1795
1796 (defcustom ivy-fixed-height-minibuffer nil
1797 "When non nil, fix the height of the minibuffer during ivy
1798 completion at `ivy-height'. This effectively sets the minimum
1799 height at this level and tries to ensure that it does not change
1800 depending on the number of candidates."
1801 :group 'ivy
1802 :type 'boolean)
1803
1804 ;;** Rest
1805 (defun ivy--minibuffer-setup ()
1806 "Setup ivy completion in the minibuffer."
1807 (set (make-local-variable 'completion-show-inline-help) nil)
1808 (set (make-local-variable 'minibuffer-default-add-function)
1809 (lambda ()
1810 (list ivy--default)))
1811 (set (make-local-variable 'inhibit-field-text-motion) nil)
1812 (when (display-graphic-p)
1813 (setq truncate-lines t))
1814 (setq-local max-mini-window-height ivy-height)
1815 (when ivy-fixed-height-minibuffer
1816 (set-window-text-height (selected-window) ivy-height))
1817 (add-hook 'post-command-hook #'ivy--exhibit nil t)
1818 ;; show completions with empty input
1819 (ivy--exhibit))
1820
1821 (defun ivy--input ()
1822 "Return the current minibuffer input."
1823 ;; assume one-line minibuffer input
1824 (buffer-substring-no-properties
1825 (minibuffer-prompt-end)
1826 (line-end-position)))
1827
1828 (defun ivy--cleanup ()
1829 "Delete the displayed completion candidates."
1830 (save-excursion
1831 (goto-char (minibuffer-prompt-end))
1832 (delete-region (line-end-position) (point-max))))
1833
1834 (defun ivy--insert-prompt ()
1835 "Update the prompt according to `ivy--prompt'."
1836 (when ivy--prompt
1837 (unless (memq this-command '(ivy-done ivy-alt-done ivy-partial-or-done
1838 counsel-find-symbol))
1839 (setq ivy--prompt-extra ""))
1840 (let (head tail)
1841 (if (string-match "\\(.*\\): \\'" ivy--prompt)
1842 (progn
1843 (setq head (match-string 1 ivy--prompt))
1844 (setq tail ": "))
1845 (setq head (substring ivy--prompt 0 -1))
1846 (setq tail " "))
1847 (let ((inhibit-read-only t)
1848 (std-props '(front-sticky t rear-nonsticky t field t read-only t))
1849 (n-str
1850 (concat
1851 (if (and (bound-and-true-p minibuffer-depth-indicate-mode)
1852 (> (minibuffer-depth) 1))
1853 (format "[%d] " (minibuffer-depth))
1854 "")
1855 (concat
1856 (if (string-match "%d.*%d" ivy-count-format)
1857 (format head
1858 (1+ ivy--index)
1859 (or (and (ivy-state-dynamic-collection ivy-last)
1860 ivy--full-length)
1861 ivy--length))
1862 (format head
1863 (or (and (ivy-state-dynamic-collection ivy-last)
1864 ivy--full-length)
1865 ivy--length)))
1866 ivy--prompt-extra
1867 tail)))
1868 (d-str (if ivy--directory
1869 (abbreviate-file-name ivy--directory)
1870 "")))
1871 (save-excursion
1872 (goto-char (point-min))
1873 (delete-region (point-min) (minibuffer-prompt-end))
1874 (if (> (+ (mod (+ (length n-str) (length d-str)) (window-width))
1875 (length ivy-text))
1876 (window-width))
1877 (setq n-str (concat n-str "\n" d-str))
1878 (setq n-str (concat n-str d-str)))
1879 (when ivy-add-newline-after-prompt
1880 (setq n-str (concat n-str "\n")))
1881 (let ((regex (format "\\([^\n]\\{%d\\}\\)[^\n]" (window-width))))
1882 (while (string-match regex n-str)
1883 (setq n-str (replace-match (concat (match-string 1 n-str) "\n") nil t n-str 1))))
1884 (set-text-properties 0 (length n-str)
1885 `(face minibuffer-prompt ,@std-props)
1886 n-str)
1887 (ivy--set-match-props n-str "confirm"
1888 `(face ivy-confirm-face ,@std-props))
1889 (ivy--set-match-props n-str "match required"
1890 `(face ivy-match-required-face ,@std-props))
1891 (insert n-str))
1892 ;; get out of the prompt area
1893 (constrain-to-field nil (point-max))))))
1894
1895 (defun ivy--set-match-props (str match props)
1896 "Set STR text properties that match MATCH to PROPS."
1897 (when (string-match match str)
1898 (set-text-properties
1899 (match-beginning 0)
1900 (match-end 0)
1901 props
1902 str)))
1903
1904 (defvar inhibit-message)
1905
1906 (defun ivy--sort-maybe (collection)
1907 "Sort COLLECTION if needed."
1908 (let ((sort (ivy-state-sort ivy-last))
1909 entry)
1910 (if (null sort)
1911 collection
1912 (let ((sort-fn (cond ((functionp sort)
1913 sort)
1914 ((setq entry (assoc (ivy-state-collection ivy-last)
1915 ivy-sort-functions-alist))
1916 (cdr entry))
1917 (t
1918 (cdr (assoc t ivy-sort-functions-alist))))))
1919 (if (functionp sort-fn)
1920 (cl-sort (copy-sequence collection) sort-fn)
1921 collection)))))
1922
1923 (defun ivy--exhibit ()
1924 "Insert Ivy completions display.
1925 Should be run via minibuffer `post-command-hook'."
1926 (when (memq 'ivy--exhibit post-command-hook)
1927 (let ((inhibit-field-text-motion nil))
1928 (constrain-to-field nil (point-max)))
1929 (setq ivy-text (ivy--input))
1930 (if (ivy-state-dynamic-collection ivy-last)
1931 ;; while-no-input would cause annoying
1932 ;; "Waiting for process to die...done" message interruptions
1933 (let ((inhibit-message t))
1934 (unless (equal ivy--old-text ivy-text)
1935 (while-no-input
1936 (setq ivy--all-candidates
1937 (ivy--sort-maybe
1938 (funcall (ivy-state-collection ivy-last) ivy-text)))
1939 (setq ivy--old-text ivy-text)))
1940 (when ivy--all-candidates
1941 (ivy--insert-minibuffer
1942 (ivy--format ivy--all-candidates))))
1943 (cond (ivy--directory
1944 (if (string-match "/\\'" ivy-text)
1945 (if (member ivy-text ivy--all-candidates)
1946 (ivy--cd (expand-file-name ivy-text ivy--directory))
1947 (when (string-match "//\\'" ivy-text)
1948 (if (and default-directory
1949 (string-match "\\`[[:alpha:]]:/" default-directory))
1950 (ivy--cd (match-string 0 default-directory))
1951 (ivy--cd "/")))
1952 (when (string-match "[[:alpha:]]:/$" ivy-text)
1953 (let ((drive-root (match-string 0 ivy-text)))
1954 (when (file-exists-p drive-root)
1955 (ivy--cd drive-root)))))
1956 (if (string-match "\\`~\\'" ivy-text)
1957 (ivy--cd (expand-file-name "~/")))))
1958 ((eq (ivy-state-collection ivy-last) 'internal-complete-buffer)
1959 (when (or (and (string-match "\\` " ivy-text)
1960 (not (string-match "\\` " ivy--old-text)))
1961 (and (string-match "\\` " ivy--old-text)
1962 (not (string-match "\\` " ivy-text))))
1963 (setq ivy--all-candidates
1964 (if (and (> (length ivy-text) 0)
1965 (eq (aref ivy-text 0)
1966 ?\ ))
1967 (ivy--buffer-list " ")
1968 (ivy--buffer-list "" ivy-use-virtual-buffers)))
1969 (setq ivy--old-re nil))))
1970 (ivy--insert-minibuffer
1971 (with-current-buffer (ivy-state-buffer ivy-last)
1972 (ivy--format
1973 (ivy--filter ivy-text ivy--all-candidates))))
1974 (setq ivy--old-text ivy-text))))
1975
1976 (defun ivy--insert-minibuffer (text)
1977 "Insert TEXT into minibuffer with appropriate cleanup."
1978 (let ((resize-mini-windows nil)
1979 (update-fn (ivy-state-update-fn ivy-last))
1980 deactivate-mark)
1981 (ivy--cleanup)
1982 (when update-fn
1983 (funcall update-fn))
1984 (ivy--insert-prompt)
1985 ;; Do nothing if while-no-input was aborted.
1986 (when (stringp text)
1987 (let ((buffer-undo-list t))
1988 (save-excursion
1989 (forward-line 1)
1990 (insert text))))
1991 (when (display-graphic-p)
1992 (ivy--resize-minibuffer-to-fit))))
1993
1994 (defun ivy--resize-minibuffer-to-fit ()
1995 "Resize the minibuffer window size to fit the text in the minibuffer."
1996 (unless (frame-root-window-p (minibuffer-window))
1997 (with-selected-window (minibuffer-window)
1998 (if (fboundp 'window-text-pixel-size)
1999 (let ((text-height (cdr (window-text-pixel-size)))
2000 (body-height (window-body-height nil t)))
2001 (when (> text-height body-height)
2002 ;; Note: the size increment needs to be at least frame-char-height,
2003 ;; otherwise resizing won't do anything.
2004 (let ((delta (max (- text-height body-height) (frame-char-height))))
2005 (window-resize nil delta nil t t))))
2006 (let ((text-height (count-screen-lines))
2007 (body-height (window-body-height)))
2008 (when (> text-height body-height)
2009 (window-resize nil (- text-height body-height) nil t)))))))
2010
2011 (declare-function colir-blend-face-background "ext:colir")
2012
2013 (defun ivy--add-face (str face)
2014 "Propertize STR with FACE.
2015 `font-lock-append-text-property' is used, since it's better than
2016 `propertize' or `add-face-text-property' in this case."
2017 (require 'colir)
2018 (condition-case nil
2019 (progn
2020 (colir-blend-face-background 0 (length str) face str)
2021 (let ((foreground (face-foreground face)))
2022 (when foreground
2023 (add-face-text-property
2024 0 (length str)
2025 `(:foreground ,foreground)
2026 nil
2027 str))))
2028 (error
2029 (ignore-errors
2030 (font-lock-append-text-property 0 (length str) 'face face str))))
2031 str)
2032
2033 (declare-function flx-make-string-cache "ext:flx")
2034 (declare-function flx-score "ext:flx")
2035
2036 (defvar ivy--flx-cache nil)
2037
2038 (eval-after-load 'flx
2039 '(setq ivy--flx-cache (flx-make-string-cache)))
2040
2041 (defun ivy-toggle-case-fold ()
2042 "Toggle the case folding between nil and auto.
2043 In any completion session, the case folding starts in auto:
2044
2045 - when the input is all lower case, `case-fold-search' is t
2046 - otherwise nil.
2047
2048 You can toggle this to make `case-fold-search' nil regardless of input."
2049 (interactive)
2050 (setq ivy-case-fold-search
2051 (if ivy-case-fold-search
2052 nil
2053 'auto))
2054 ;; reset cache so that the candidate list updates
2055 (setq ivy--old-re nil))
2056
2057 (defun ivy--re-filter (re candidates)
2058 "Return all RE matching CANDIDATES.
2059 RE is a list of cons cells, with a regexp car and a boolean cdr.
2060 When the cdr is t, the car must match.
2061 Otherwise, the car must not match."
2062 (let ((re-list (if (stringp re) (list (cons re t)) re))
2063 (res candidates))
2064 (dolist (re re-list)
2065 (setq res
2066 (ignore-errors
2067 (funcall
2068 (if (cdr re)
2069 #'cl-remove-if-not
2070 #'cl-remove-if)
2071 (let ((re-str (car re)))
2072 (lambda (x) (string-match re-str x)))
2073 res))))
2074 res))
2075
2076 (defun ivy--filter (name candidates)
2077 "Return all items that match NAME in CANDIDATES.
2078 CANDIDATES are assumed to be static."
2079 (let ((re (funcall ivy--regex-function name)))
2080 (if (and (equal re ivy--old-re)
2081 ivy--old-cands)
2082 ;; quick caching for "C-n", "C-p" etc.
2083 ivy--old-cands
2084 (let* ((re-str (if (listp re) (caar re) re))
2085 (matcher (ivy-state-matcher ivy-last))
2086 (case-fold-search
2087 (and ivy-case-fold-search
2088 (string= name (downcase name))))
2089 (cands (cond
2090 (matcher
2091 (funcall matcher re candidates))
2092 ((and ivy--old-re
2093 (stringp re)
2094 (stringp ivy--old-re)
2095 (not (string-match "\\\\" ivy--old-re))
2096 (not (equal ivy--old-re ""))
2097 (memq (cl-search
2098 (if (string-match "\\\\)\\'" ivy--old-re)
2099 (substring ivy--old-re 0 -2)
2100 ivy--old-re)
2101 re)
2102 '(0 2)))
2103 (ignore-errors
2104 (cl-remove-if-not
2105 (lambda (x) (string-match re x))
2106 ivy--old-cands)))
2107 (t
2108 (ivy--re-filter re candidates)))))
2109 (ivy--recompute-index name re-str cands)
2110 (setq ivy--old-re
2111 (if (eq ivy--regex-function 'ivy--regex-ignore-order)
2112 re
2113 (if cands
2114 re-str
2115 "")))
2116 (setq ivy--old-cands (ivy--sort name cands))))))
2117
2118 (defun ivy--set-candidates (x)
2119 "Update `ivy--all-candidates' with X."
2120 (let (res)
2121 (dolist (source ivy--extra-candidates)
2122 (if (equal source '(original-source))
2123 (if (null res)
2124 (setq res x)
2125 (setq res (append x res)))
2126 (setq ivy--old-re nil)
2127 (setq res (append
2128 (ivy--filter ivy-text (cadr source))
2129 res))))
2130 (setq ivy--all-candidates res)))
2131
2132 (defcustom ivy-sort-matches-functions-alist '((t . nil))
2133 "An alist of functions for sorting matching candidates.
2134
2135 Unlike `ivy-sort-functions-alist', which is used to sort the
2136 whole collection only once, this alist of functions are used to
2137 sort only matching candidates after each change in input.
2138
2139 The alist KEY is either a collection function or t to match
2140 previously unmatched collection functions.
2141
2142 The alist VAL is a sorting function with the signature of
2143 `ivy--prefix-sort'."
2144 :type '(alist
2145 :key-type (choice
2146 (const :tag "Fall-through" t)
2147 (symbol :tag "Collection"))
2148 :value-type
2149 (choice
2150 (const :tag "Don't sort" nil)
2151 (const :tag "Put prefix matches ahead" 'ivy--prefix-sort)
2152 (function :tag "Custom sort function"))))
2153
2154 (defun ivy--sort-files-by-date (_name candidates)
2155 "Re-soft CANDIDATES according to file modification date."
2156 (let ((default-directory ivy--directory))
2157 (cl-sort (copy-sequence candidates)
2158 (lambda (f1 f2)
2159 (time-less-p
2160 (nth 5 (file-attributes f2))
2161 (nth 5 (file-attributes f1)))))))
2162
2163 (defun ivy--sort (name candidates)
2164 "Re-sort CANDIDATES by NAME.
2165 All CANDIDATES are assumed to match NAME."
2166 (let ((key (or (ivy-state-caller ivy-last)
2167 (when (functionp (ivy-state-collection ivy-last))
2168 (ivy-state-collection ivy-last))))
2169 fun)
2170 (cond ((and (require 'flx nil 'noerror)
2171 (eq ivy--regex-function 'ivy--regex-fuzzy))
2172 (ivy--flx-sort name candidates))
2173 ((setq fun (cdr (or (assoc key ivy-sort-matches-functions-alist)
2174 (assoc t ivy-sort-matches-functions-alist))))
2175 (funcall fun name candidates))
2176 (t
2177 candidates))))
2178
2179 (defun ivy--prefix-sort (name candidates)
2180 "Re-sort CANDIDATES.
2181 Prefix matches to NAME are put ahead of the list."
2182 (if (or (string-match "^\\^" name) (string= name ""))
2183 candidates
2184 (let ((re-prefix (concat "^" (funcall ivy--regex-function name)))
2185 res-prefix
2186 res-noprefix)
2187 (dolist (s candidates)
2188 (if (string-match re-prefix s)
2189 (push s res-prefix)
2190 (push s res-noprefix)))
2191 (nconc
2192 (nreverse res-prefix)
2193 (nreverse res-noprefix)))))
2194
2195 (defun ivy--recompute-index (name re-str cands)
2196 (let* ((caller (ivy-state-caller ivy-last))
2197 (func (or (and caller (cdr (assoc caller ivy-index-functions-alist)))
2198 (cdr (assoc t ivy-index-functions-alist))
2199 #'ivy-recompute-index-zero)))
2200 (unless (eq this-command 'ivy-resume)
2201 (setq ivy--index
2202 (or
2203 (cl-position (if (and (> (length name) 0)
2204 (eq ?^ (aref name 0)))
2205 (substring name 1)
2206 name) cands
2207 :test #'equal)
2208 (and ivy--directory
2209 (cl-position
2210 (concat re-str "/") cands
2211 :test #'equal))
2212 (and (not (string= name ""))
2213 (not (and (require 'flx nil 'noerror)
2214 (eq ivy--regex-function 'ivy--regex-fuzzy)
2215 (< (length cands) 200)))
2216 ivy--old-cands
2217 (cl-position (nth ivy--index ivy--old-cands)
2218 cands))
2219 (funcall func re-str cands))))
2220 (when (and (or (string= name "")
2221 (string= name "^"))
2222 (not (equal ivy--old-re "")))
2223 (setq ivy--index
2224 (or (ivy--preselect-index
2225 (ivy-state-preselect ivy-last)
2226 cands)
2227 ivy--index)))))
2228
2229 (defun ivy-recompute-index-swiper (_re-str cands)
2230 (let ((tail (nthcdr ivy--index ivy--old-cands))
2231 idx)
2232 (if (and tail ivy--old-cands (not (equal "^" ivy--old-re)))
2233 (progn
2234 (while (and tail (null idx))
2235 ;; Compare with eq to handle equal duplicates in cands
2236 (setq idx (cl-position (pop tail) cands)))
2237 (or
2238 idx
2239 (1- (length cands))))
2240 (if ivy--old-cands
2241 ivy--index
2242 ;; already in ivy-state-buffer
2243 (let ((n (line-number-at-pos))
2244 (res 0)
2245 (i 0))
2246 (dolist (c cands)
2247 (when (eq n (read (get-text-property 0 'display c)))
2248 (setq res i))
2249 (cl-incf i))
2250 res)))))
2251
2252 (defun ivy-recompute-index-swiper-async (_re-str cands)
2253 (if (null ivy--old-cands)
2254 (let ((ln (with-ivy-window
2255 (line-number-at-pos))))
2256 (or
2257 ;; closest to current line going forwards
2258 (cl-position-if (lambda (x)
2259 (>= (string-to-number x) ln))
2260 cands)
2261 ;; closest to current line going backwards
2262 (1- (length cands))))
2263 (let ((tail (nthcdr ivy--index ivy--old-cands))
2264 idx)
2265 (if (and tail ivy--old-cands (not (equal "^" ivy--old-re)))
2266 (progn
2267 (while (and tail (null idx))
2268 ;; Compare with `equal', since the collection is re-created
2269 ;; each time with `split-string'
2270 (setq idx (cl-position (pop tail) cands :test #'equal)))
2271 (or idx 0))
2272 ivy--index))))
2273
2274 (defun ivy-recompute-index-zero (_re-str _cands)
2275 0)
2276
2277 (defcustom ivy-minibuffer-faces
2278 '(ivy-minibuffer-match-face-1
2279 ivy-minibuffer-match-face-2
2280 ivy-minibuffer-match-face-3
2281 ivy-minibuffer-match-face-4)
2282 "List of `ivy' faces for minibuffer group matches."
2283 :type '(repeat :tag "Faces"
2284 (choice
2285 (const ivy-minibuffer-match-face-1)
2286 (const ivy-minibuffer-match-face-2)
2287 (const ivy-minibuffer-match-face-3)
2288 (const ivy-minibuffer-match-face-4)
2289 (face :tag "Other face"))))
2290
2291 (defvar ivy-flx-limit 200
2292 "Used to conditionally turn off flx sorting.
2293
2294 When the amount of matching candidates exceeds this limit, then
2295 no sorting is done.")
2296
2297 (defun ivy--flx-sort (name cands)
2298 "Sort according to closeness to string NAME the string list CANDS."
2299 (condition-case nil
2300 (if (and cands
2301 (< (length cands) ivy-flx-limit))
2302 (let* ((flx-name (if (string-match "^\\^" name)
2303 (substring name 1)
2304 name))
2305 (cands-with-score
2306 (delq nil
2307 (mapcar
2308 (lambda (x)
2309 (let ((score (flx-score x flx-name ivy--flx-cache)))
2310 (and score
2311 (cons score x))))
2312 cands))))
2313 (if cands-with-score
2314 (mapcar (lambda (x)
2315 (let ((str (copy-sequence (cdr x)))
2316 (i 0)
2317 (last-j -2))
2318 (dolist (j (cdar x))
2319 (unless (eq j (1+ last-j))
2320 (cl-incf i))
2321 (setq last-j j)
2322 (ivy-add-face-text-property
2323 j (1+ j)
2324 (nth (1+ (mod (+ i 2) (1- (length ivy-minibuffer-faces))))
2325 ivy-minibuffer-faces)
2326 str))
2327 str))
2328 (sort cands-with-score
2329 (lambda (x y)
2330 (> (caar x) (caar y)))))
2331 cands))
2332 cands)
2333 (error
2334 cands)))
2335
2336 (defcustom ivy-format-function 'ivy-format-function-default
2337 "Function to transform the list of candidates into a string.
2338 This string is inserted into the minibuffer."
2339 :type '(choice
2340 (const :tag "Default" ivy-format-function-default)
2341 (const :tag "Arrow prefix" ivy-format-function-arrow)
2342 (const :tag "Full line" ivy-format-function-line)))
2343
2344 (defun ivy--truncate-string (str width)
2345 "Truncate STR to WIDTH."
2346 (if (> (string-width str) width)
2347 (concat (substring str 0 (min (- width 3)
2348 (- (length str) 3))) "...")
2349 str))
2350
2351 (defun ivy--format-function-generic (selected-fn other-fn strs separator)
2352 "Transform CAND-PAIRS into a string for minibuffer.
2353 SELECTED-FN and OTHER-FN each take one string argument.
2354 SEPARATOR is used to join the candidates."
2355 (let ((i -1))
2356 (mapconcat
2357 (lambda (str)
2358 (let ((curr (eq (cl-incf i) ivy--index)))
2359 (if curr
2360 (funcall selected-fn str)
2361 (funcall other-fn str))))
2362 strs
2363 separator)))
2364
2365 (defun ivy-format-function-default (cands)
2366 "Transform CAND-PAIRS into a string for minibuffer."
2367 (ivy--format-function-generic
2368 (lambda (str)
2369 (ivy--add-face str 'ivy-current-match))
2370 #'identity
2371 cands
2372 "\n"))
2373
2374 (defun ivy-format-function-arrow (cands)
2375 "Transform CAND-PAIRS into a string for minibuffer."
2376 (ivy--format-function-generic
2377 (lambda (str)
2378 (concat "> " (ivy--add-face str 'ivy-current-match)))
2379 (lambda (str)
2380 (concat " " str))
2381 cands
2382 "\n"))
2383
2384 (defun ivy-format-function-line (cands)
2385 "Transform CAND-PAIRS into a string for minibuffer."
2386 (ivy--format-function-generic
2387 (lambda (str)
2388 (ivy--add-face (concat str "\n") 'ivy-current-match))
2389 (lambda (str)
2390 (concat str "\n"))
2391 cands
2392 ""))
2393
2394 (defun ivy-add-face-text-property (start end face str)
2395 (if (fboundp 'add-face-text-property)
2396 (add-face-text-property
2397 start end face nil str)
2398 (font-lock-append-text-property
2399 start end 'face face str)))
2400
2401 (defun ivy--format-minibuffer-line (str)
2402 (let ((start 0)
2403 (str (copy-sequence str)))
2404 (cond ((eq ivy--regex-function 'ivy--regex-ignore-order)
2405 (when (consp ivy--old-re)
2406 (let ((i 1))
2407 (dolist (re ivy--old-re)
2408 (when (string-match (car re) str)
2409 (ivy-add-face-text-property
2410 (match-beginning 0) (match-end 0)
2411 (nth (1+ (mod (+ i 2) (1- (length ivy-minibuffer-faces))))
2412 ivy-minibuffer-faces)
2413 str))
2414 (cl-incf i)))))
2415 ((and (eq ivy-display-style 'fancy)
2416 (not (eq ivy--regex-function 'ivy--regex-fuzzy)))
2417 (unless ivy--old-re
2418 (setq ivy--old-re (funcall ivy--regex-function ivy-text)))
2419 (while (and (string-match ivy--old-re str start)
2420 (> (- (match-end 0) (match-beginning 0)) 0))
2421 (setq start (match-end 0))
2422 (let ((i 0))
2423 (while (<= i ivy--subexps)
2424 (let ((face
2425 (cond ((zerop ivy--subexps)
2426 (cadr ivy-minibuffer-faces))
2427 ((zerop i)
2428 (car ivy-minibuffer-faces))
2429 (t
2430 (nth (1+ (mod (+ i 2) (1- (length ivy-minibuffer-faces))))
2431 ivy-minibuffer-faces)))))
2432 (ivy-add-face-text-property
2433 (match-beginning i) (match-end i)
2434 face str))
2435 (cl-incf i))))))
2436 str))
2437
2438 (ivy-set-display-transformer
2439 'counsel-find-file 'ivy-read-file-transformer)
2440 (ivy-set-display-transformer
2441 'read-file-name-internal 'ivy-read-file-transformer)
2442
2443 (defun ivy-read-file-transformer (str)
2444 (if (string-match-p "/\\'" str)
2445 (propertize str 'face 'ivy-subdir)
2446 str))
2447
2448 (defun ivy--format (cands)
2449 "Return a string for CANDS suitable for display in the minibuffer.
2450 CANDS is a list of strings."
2451 (setq ivy--length (length cands))
2452 (when (>= ivy--index ivy--length)
2453 (setq ivy--index (max (1- ivy--length) 0)))
2454 (if (null cands)
2455 (setq ivy--current "")
2456 (let* ((half-height (/ ivy-height 2))
2457 (start (max 0 (- ivy--index half-height)))
2458 (end (min (+ start (1- ivy-height)) ivy--length))
2459 (start (max 0 (min start (- end (1- ivy-height)))))
2460 (cands (cl-subseq cands start end))
2461 (index (- ivy--index start))
2462 transformer-fn)
2463 (setq ivy--current (copy-sequence (nth index cands)))
2464 (when (setq transformer-fn (ivy-state-display-transformer-fn ivy-last))
2465 (with-ivy-window
2466 (setq cands (mapcar transformer-fn cands))))
2467 (let* ((ivy--index index)
2468 (cands (mapcar
2469 #'ivy--format-minibuffer-line
2470 cands))
2471 (res (concat "\n" (funcall ivy-format-function cands))))
2472 (put-text-property 0 (length res) 'read-only nil res)
2473 res))))
2474
2475 (defvar ivy--virtual-buffers nil
2476 "Store the virtual buffers alist.")
2477
2478 (defvar recentf-list)
2479
2480 (defcustom ivy-virtual-abbreviate 'name
2481 "The mode of abbreviation for virtual buffer names."
2482 :type '(choice
2483 (const :tag "Only name" name)
2484 (const :tag "Full path" full)
2485 ;; eventually, uniquify
2486 ))
2487
2488 (defun ivy--virtual-buffers ()
2489 "Adapted from `ido-add-virtual-buffers-to-list'."
2490 (unless recentf-mode
2491 (recentf-mode 1))
2492 (let ((bookmarks (and (boundp 'bookmark-alist)
2493 bookmark-alist))
2494 virtual-buffers name)
2495 (dolist (head (append
2496 recentf-list
2497 (delete " - no file -"
2498 (delq nil (mapcar (lambda (bookmark)
2499 (cdr (assoc 'filename bookmark)))
2500 bookmarks)))))
2501 (setq name
2502 (if (eq ivy-virtual-abbreviate 'name)
2503 (file-name-nondirectory head)
2504 (expand-file-name head)))
2505 (when (equal name "")
2506 (setq name (file-name-nondirectory (directory-file-name head))))
2507 (when (equal name "")
2508 (setq name head))
2509 (and (not (equal name ""))
2510 (null (get-file-buffer head))
2511 (not (assoc name virtual-buffers))
2512 (push (cons name head) virtual-buffers)))
2513 (when virtual-buffers
2514 (dolist (comp virtual-buffers)
2515 (put-text-property 0 (length (car comp))
2516 'face 'ivy-virtual
2517 (car comp)))
2518 (setq ivy--virtual-buffers (nreverse virtual-buffers))
2519 (mapcar #'car ivy--virtual-buffers))))
2520
2521 (defcustom ivy-ignore-buffers '("\\` ")
2522 "List of regexps or functions matching buffer names to ignore."
2523 :type '(repeat (choice regexp function)))
2524
2525 (defun ivy--buffer-list (str &optional virtual predicate)
2526 "Return the buffers that match STR.
2527 When VIRTUAL is non-nil, add virtual buffers."
2528 (delete-dups
2529 (append
2530 (mapcar
2531 (lambda (x)
2532 (if (with-current-buffer x
2533 (file-remote-p
2534 (abbreviate-file-name default-directory)))
2535 (propertize x 'face 'ivy-remote)
2536 x))
2537 (all-completions str 'internal-complete-buffer predicate))
2538 (and virtual
2539 (ivy--virtual-buffers)))))
2540
2541 (defvar ivy-views (and nil
2542 `(("ivy + *scratch* {}"
2543 (vert
2544 (file ,(expand-file-name "ivy.el"))
2545 (buffer "*scratch*")))
2546 ("swiper + *scratch* {}"
2547 (horz
2548 (file ,(expand-file-name "swiper.el"))
2549 (buffer "*scratch*")))))
2550 "Store window configurations selectable by `ivy-switch-buffer'.
2551
2552 The default value is given as an example.
2553
2554 Each element is a list of (NAME TREE). NAME is a string, it's
2555 recommended to end it with a distinctive snippet e.g. \"{}\" so
2556 that it's easy to distinguish the window configurations.
2557
2558 TREE is a nested list with the following valid cars:
2559 - vert: split the window vertically
2560 - horz: split the window horizontally
2561 - file: open the specified file
2562 - buffer: open the specified buffer
2563
2564 TREE can be nested multiple times to have mulitple window splits.")
2565
2566 (defun ivy-source-views ()
2567 (mapcar #'car ivy-views))
2568
2569 (ivy-set-sources
2570 'ivy-switch-buffer
2571 '((original-source)
2572 (ivy-source-views)))
2573
2574 (defun ivy-set-view-recur (view)
2575 (cond ((eq (car view) 'vert)
2576 (let ((wnd1 (selected-window))
2577 (wnd2 (split-window-vertically)))
2578 (with-selected-window wnd1
2579 (ivy-set-view-recur (nth 1 view)))
2580 (with-selected-window wnd2
2581 (ivy-set-view-recur (nth 2 view)))))
2582 ((eq (car view) 'horz)
2583 (let ((wnd1 (selected-window))
2584 (wnd2 (split-window-horizontally)))
2585 (with-selected-window wnd1
2586 (ivy-set-view-recur (nth 1 view)))
2587 (with-selected-window wnd2
2588 (ivy-set-view-recur (nth 2 view)))))
2589 ((eq (car view) 'file)
2590 (let* ((name (cadr view))
2591 (virtual (assoc name ivy--virtual-buffers))
2592 buffer)
2593 (cond ((setq buffer (get-buffer name))
2594 (switch-to-buffer buffer nil 'force-same-window))
2595 (virtual
2596 (find-file (cdr virtual)))
2597 ((file-exists-p name)
2598 (find-file name)))))
2599 ((eq (car view) 'buffer)
2600 (switch-to-buffer (cadr view)))
2601 ((eq (car view) 'sexp)
2602 (eval (cadr view)))))
2603
2604 (defun ivy--switch-buffer-action (buffer)
2605 "Switch to BUFFER.
2606 BUFFER may be a string or nil."
2607 (with-ivy-window
2608 (if (zerop (length buffer))
2609 (switch-to-buffer
2610 ivy-text nil 'force-same-window)
2611 (let ((virtual (assoc buffer ivy--virtual-buffers))
2612 (view (assoc buffer ivy-views)))
2613 (cond ((and virtual
2614 (not (get-buffer buffer)))
2615 (find-file (cdr virtual)))
2616 (view
2617 (delete-other-windows)
2618 (ivy-set-view-recur (cadr view)))
2619 (t
2620 (switch-to-buffer
2621 buffer nil 'force-same-window)))))))
2622
2623 (defun ivy--switch-buffer-other-window-action (buffer)
2624 "Switch to BUFFER in other window.
2625 BUFFER may be a string or nil."
2626 (if (zerop (length buffer))
2627 (switch-to-buffer-other-window ivy-text)
2628 (let ((virtual (assoc buffer ivy--virtual-buffers)))
2629 (if (and virtual
2630 (not (get-buffer buffer)))
2631 (find-file-other-window (cdr virtual))
2632 (switch-to-buffer-other-window buffer)))))
2633
2634 (defun ivy--rename-buffer-action (buffer)
2635 "Rename BUFFER."
2636 (let ((new-name (read-string "Rename buffer (to new name): ")))
2637 (with-current-buffer buffer
2638 (rename-buffer new-name))))
2639
2640 (defvar ivy-switch-buffer-map (make-sparse-keymap))
2641
2642 (ivy-set-actions
2643 'ivy-switch-buffer
2644 '(("k"
2645 (lambda (x)
2646 (kill-buffer x)
2647 (ivy--reset-state ivy-last))
2648 "kill")
2649 ("j"
2650 ivy--switch-buffer-other-window-action
2651 "other")
2652 ("r"
2653 ivy--rename-buffer-action
2654 "rename")))
2655
2656 (defun ivy--switch-buffer-matcher (regexp candidates)
2657 "Return REGEXP-matching CANDIDATES.
2658 Skip buffers that match `ivy-ignore-buffers'."
2659 (let ((res (ivy--re-filter regexp candidates)))
2660 (if (or (null ivy-use-ignore)
2661 (null ivy-ignore-buffers))
2662 res
2663 (or (cl-remove-if
2664 (lambda (buf)
2665 (cl-find-if
2666 (lambda (f-or-r)
2667 (if (functionp f-or-r)
2668 (funcall f-or-r buf)
2669 (string-match-p f-or-r buf)))
2670 ivy-ignore-buffers))
2671 res)
2672 res))))
2673
2674 (ivy-set-display-transformer
2675 'ivy-switch-buffer 'ivy-switch-buffer-transformer)
2676 (ivy-set-display-transformer
2677 'internal-complete-buffer 'ivy-switch-buffer-transformer)
2678
2679 (defun ivy-switch-buffer-transformer (str)
2680 (let ((b (get-buffer str)))
2681 (if (and b
2682 (buffer-file-name b)
2683 (buffer-modified-p b))
2684 (propertize str 'face 'ivy-modified-buffer)
2685 str)))
2686
2687 (defun ivy-switch-buffer-occur ()
2688 "Occur function for `ivy-switch-buffer' that uses `ibuffer'."
2689 (let* ((cand-regexp
2690 (concat "\\(" (mapconcat #'regexp-quote ivy--old-cands "\\|") "\\)"))
2691 (new-qualifier `((name . ,cand-regexp))))
2692 (ibuffer nil (buffer-name) new-qualifier)))
2693
2694 ;;;###autoload
2695 (defun ivy-switch-buffer ()
2696 "Switch to another buffer."
2697 (interactive)
2698 (let ((this-command 'ivy-switch-buffer))
2699 (ivy-read "Switch to buffer: " 'internal-complete-buffer
2700 :matcher #'ivy--switch-buffer-matcher
2701 :preselect (buffer-name (other-buffer (current-buffer)))
2702 :action #'ivy--switch-buffer-action
2703 :keymap ivy-switch-buffer-map
2704 :caller 'ivy-switch-buffer)))
2705
2706 ;;;###autoload
2707 (defun ivy-switch-buffer-other-window ()
2708 "Switch to another buffer in another window."
2709 (interactive)
2710 (ivy-read "Switch to buffer in other window: " 'internal-complete-buffer
2711 :preselect (buffer-name (other-buffer (current-buffer)))
2712 :action #'ivy--switch-buffer-other-window-action
2713 :keymap ivy-switch-buffer-map
2714 :caller 'ivy-switch-buffer-other-window))
2715
2716 ;;;###autoload
2717 (defun ivy-recentf ()
2718 "Find a file on `recentf-list'."
2719 (interactive)
2720 (ivy-read "Recentf: " recentf-list
2721 :action
2722 (lambda (f)
2723 (with-ivy-window
2724 (find-file f)))
2725 :caller 'ivy-recentf))
2726
2727 (defun ivy-yank-word ()
2728 "Pull next word from buffer into search string."
2729 (interactive)
2730 (let (amend)
2731 (with-ivy-window
2732 (let ((pt (point))
2733 (le (line-end-position)))
2734 (forward-word 1)
2735 (if (> (point) le)
2736 (goto-char pt)
2737 (setq amend (buffer-substring-no-properties pt (point))))))
2738 (when amend
2739 (insert (replace-regexp-in-string " +" " " amend)))))
2740
2741 (defun ivy-kill-ring-save ()
2742 "Store the current candidates into the kill ring.
2743 If the region is active, forward to `kill-ring-save' instead."
2744 (interactive)
2745 (if (region-active-p)
2746 (call-interactively 'kill-ring-save)
2747 (kill-new
2748 (mapconcat
2749 #'identity
2750 ivy--old-cands
2751 "\n"))))
2752
2753 (defun ivy-insert-current ()
2754 "Make the current candidate into current input.
2755 Don't finish completion."
2756 (interactive)
2757 (delete-minibuffer-contents)
2758 (if (and ivy--directory
2759 (string-match "/$" ivy--current))
2760 (insert (substring ivy--current 0 -1))
2761 (insert ivy--current)))
2762
2763 (defun ivy-toggle-fuzzy ()
2764 "Toggle the re builder between `ivy--regex-fuzzy' and `ivy--regex-plus'."
2765 (interactive)
2766 (setq ivy--old-re nil)
2767 (if (eq ivy--regex-function 'ivy--regex-fuzzy)
2768 (setq ivy--regex-function 'ivy--regex-plus)
2769 (setq ivy--regex-function 'ivy--regex-fuzzy)))
2770
2771 (defun ivy-reverse-i-search ()
2772 "Enter a recursive `ivy-read' session using the current history.
2773 The selected history element will be inserted into the minibuffer."
2774 (interactive)
2775 (let ((enable-recursive-minibuffers t)
2776 (history (symbol-value (ivy-state-history ivy-last)))
2777 (old-last ivy-last)
2778 (ivy-recursive-restore nil))
2779 (ivy-read "Reverse-i-search: "
2780 history
2781 :action (lambda (x)
2782 (ivy--reset-state
2783 (setq ivy-last old-last))
2784 (delete-minibuffer-contents)
2785 (insert (substring-no-properties x))
2786 (ivy--cd-maybe)))))
2787
2788 (defun ivy-restrict-to-matches ()
2789 "Restrict candidates to current matches and erase input."
2790 (interactive)
2791 (delete-minibuffer-contents)
2792 (setq ivy--all-candidates
2793 (ivy--filter ivy-text ivy--all-candidates)))
2794
2795 ;;* Occur
2796 (defvar-local ivy-occur-last nil
2797 "Buffer-local value of `ivy-last'.
2798 Can't re-use `ivy-last' because using e.g. `swiper' in the same
2799 buffer would modify `ivy-last'.")
2800
2801 (defvar ivy-occur-mode-map
2802 (let ((map (make-sparse-keymap)))
2803 (define-key map [mouse-1] 'ivy-occur-click)
2804 (define-key map (kbd "RET") 'ivy-occur-press)
2805 (define-key map (kbd "j") 'ivy-occur-next-line)
2806 (define-key map (kbd "k") 'ivy-occur-previous-line)
2807 (define-key map (kbd "h") 'backward-char)
2808 (define-key map (kbd "l") 'forward-char)
2809 (define-key map (kbd "f") 'ivy-occur-press)
2810 (define-key map (kbd "g") 'ivy-occur-revert-buffer)
2811 (define-key map (kbd "a") 'ivy-occur-read-action)
2812 (define-key map (kbd "o") 'ivy-occur-dispatch)
2813 (define-key map (kbd "c") 'ivy-occur-toggle-calling)
2814 (define-key map (kbd "q") 'quit-window)
2815 map)
2816 "Keymap for Ivy Occur mode.")
2817
2818 (defun ivy-occur-toggle-calling ()
2819 "Toggle `ivy-calling'."
2820 (interactive)
2821 (if (setq ivy-calling (not ivy-calling))
2822 (progn
2823 (setq mode-name "Ivy-Occur [calling]")
2824 (ivy-occur-press))
2825 (setq mode-name "Ivy-Occur"))
2826 (force-mode-line-update))
2827
2828 (defun ivy-occur-next-line (&optional arg)
2829 "Move the cursor down ARG lines.
2830 When `ivy-calling' isn't nil, call `ivy-occur-press'."
2831 (interactive "p")
2832 (forward-line arg)
2833 (when ivy-calling
2834 (ivy-occur-press)))
2835
2836 (defun ivy-occur-previous-line (&optional arg)
2837 "Move the cursor up ARG lines.
2838 When `ivy-calling' isn't nil, call `ivy-occur-press'."
2839 (interactive "p")
2840 (forward-line (- arg))
2841 (when ivy-calling
2842 (ivy-occur-press)))
2843
2844 (define-derived-mode ivy-occur-mode fundamental-mode "Ivy-Occur"
2845 "Major mode for output from \\[ivy-occur].
2846
2847 \\{ivy-occur-mode-map}")
2848
2849 (defvar ivy-occur-grep-mode-map
2850 (let ((map (copy-keymap ivy-occur-mode-map)))
2851 (define-key map (kbd "C-x C-q") 'ivy-wgrep-change-to-wgrep-mode)
2852 map)
2853 "Keymap for Ivy Occur Grep mode.")
2854
2855 (define-derived-mode ivy-occur-grep-mode grep-mode "Ivy-Occur"
2856 "Major mode for output from \\[ivy-occur].
2857
2858 \\{ivy-occur-grep-mode-map}")
2859
2860 (defvar ivy--occurs-list nil
2861 "A list of custom occur generators per command.")
2862
2863 (defun ivy-set-occur (cmd occur)
2864 "Assign CMD a custom OCCUR function."
2865 (setq ivy--occurs-list
2866 (plist-put ivy--occurs-list cmd occur)))
2867
2868 (ivy-set-occur 'ivy-switch-buffer 'ivy-switch-buffer-occur)
2869 (ivy-set-occur 'ivy-switch-buffer-other-window 'ivy-switch-buffer-occur)
2870
2871 (defun ivy--occur-insert-lines (cands)
2872 (dolist (str cands)
2873 (add-text-properties
2874 0 (length str)
2875 `(mouse-face
2876 highlight
2877 help-echo "mouse-1: call ivy-action")
2878 str)
2879 (insert str "\n")))
2880
2881 (defun ivy-occur ()
2882 "Stop completion and put the current matches into a new buffer.
2883
2884 The new buffer remembers current action(s).
2885
2886 While in the *ivy-occur* buffer, selecting a candidate with RET or
2887 a mouse click will call the appropriate action for that candidate.
2888
2889 There is no limit on the number of *ivy-occur* buffers."
2890 (interactive)
2891 (if (not (window-minibuffer-p))
2892 (user-error "No completion session is active")
2893 (let* ((caller (ivy-state-caller ivy-last))
2894 (occur-fn (plist-get ivy--occurs-list caller))
2895 (buffer
2896 (generate-new-buffer
2897 (format "*ivy-occur%s \"%s\"*"
2898 (if caller
2899 (concat " " (prin1-to-string caller))
2900 "")
2901 ivy-text))))
2902 (with-current-buffer buffer
2903 (let ((inhibit-read-only t))
2904 (erase-buffer)
2905 (if occur-fn
2906 (funcall occur-fn)
2907 (ivy-occur-mode)
2908 (insert (format "%d candidates:\n" (length ivy--old-cands)))
2909 (ivy--occur-insert-lines
2910 (mapcar
2911 (lambda (cand) (concat " " cand))
2912 ivy--old-cands))))
2913 (setf (ivy-state-text ivy-last) ivy-text)
2914 (setq ivy-occur-last ivy-last)
2915 (setq-local ivy--directory ivy--directory))
2916 (ivy-exit-with-action
2917 `(lambda (_) (pop-to-buffer ,buffer))))))
2918
2919 (defun ivy-occur-revert-buffer ()
2920 "Refresh the buffer making it up-to date with the collection.
2921
2922 Currently only works for `swiper'. In that specific case, the
2923 *ivy-occur* buffer becomes nearly useless as the orignal buffer
2924 is updated, since the line numbers no longer match.
2925
2926 Calling this function is as if you called `ivy-occur' on the
2927 updated original buffer."
2928 (interactive)
2929 (let ((caller (ivy-state-caller ivy-occur-last))
2930 (ivy-last ivy-occur-last))
2931 (cond ((eq caller 'swiper)
2932 (let ((buffer (ivy-state-buffer ivy-occur-last)))
2933 (unless (buffer-live-p buffer)
2934 (error "buffer was killed"))
2935 (let ((inhibit-read-only t))
2936 (erase-buffer)
2937 (funcall (plist-get ivy--occurs-list caller) t))))
2938 ((memq caller '(counsel-git-grep counsel-grep counsel-ag))
2939 (let ((inhibit-read-only t))
2940 (erase-buffer)
2941 (funcall (plist-get ivy--occurs-list caller)))))))
2942
2943 (declare-function wgrep-change-to-wgrep-mode "ext:wgrep")
2944
2945 (defun ivy-wgrep-change-to-wgrep-mode ()
2946 "Forward to `wgrep-change-to-wgrep-mode'."
2947 (interactive)
2948 (if (require 'wgrep nil 'noerror)
2949 (wgrep-change-to-wgrep-mode)
2950 (error "Package wgrep isn't installed")))
2951
2952 (defun ivy-occur-read-action ()
2953 "Select one of the available actions as the current one."
2954 (interactive)
2955 (let ((ivy-last ivy-occur-last))
2956 (ivy-read-action)))
2957
2958 (defun ivy-occur-dispatch ()
2959 "Call one of the available actions on the current item."
2960 (interactive)
2961 (let* ((state-action (ivy-state-action ivy-occur-last))
2962 (actions (if (symbolp state-action)
2963 state-action
2964 (copy-sequence state-action))))
2965 (unwind-protect
2966 (progn
2967 (ivy-occur-read-action)
2968 (ivy-occur-press))
2969 (setf (ivy-state-action ivy-occur-last) actions))))
2970
2971 (defun ivy-occur-click (event)
2972 "Execute action for the current candidate.
2973 EVENT gives the mouse position."
2974 (interactive "e")
2975 (let ((window (posn-window (event-end event)))
2976 (pos (posn-point (event-end event))))
2977 (with-current-buffer (window-buffer window)
2978 (goto-char pos)
2979 (ivy-occur-press))))
2980
2981 (declare-function swiper--cleanup "swiper")
2982 (declare-function swiper--add-overlays "swiper")
2983 (defvar ivy-occur-timer nil)
2984
2985 (defun ivy-occur-press ()
2986 "Execute action for the current candidate."
2987 (interactive)
2988 (when (save-excursion
2989 (beginning-of-line)
2990 (looking-at "\\(?:./\\| \\)\\(.*\\)$"))
2991 (when (memq (ivy-state-caller ivy-occur-last)
2992 '(swiper counsel-git-grep counsel-grep counsel-ag
2993 counsel-describe-function counsel-describe-variable))
2994 (let ((window (ivy-state-window ivy-occur-last)))
2995 (when (or (null (window-live-p window))
2996 (equal window (selected-window)))
2997 (save-selected-window
2998 (setf (ivy-state-window ivy-occur-last)
2999 (display-buffer (ivy-state-buffer ivy-occur-last)
3000 'display-buffer-pop-up-window))))))
3001 (let* ((ivy-last ivy-occur-last)
3002 (ivy-text (ivy-state-text ivy-last))
3003 (str (buffer-substring
3004 (match-beginning 1)
3005 (match-end 1)))
3006 (coll (ivy-state-collection ivy-last))
3007 (action (ivy--get-action ivy-last))
3008 (ivy-exit 'done))
3009 (with-ivy-window
3010 (funcall action
3011 (if (and (consp coll)
3012 (consp (car coll)))
3013 (cdr (assoc str coll))
3014 str))
3015 (if (memq (ivy-state-caller ivy-last)
3016 '(swiper counsel-git-grep counsel-grep))
3017 (with-current-buffer (window-buffer (selected-window))
3018 (swiper--cleanup)
3019 (swiper--add-overlays
3020 (ivy--regex ivy-text)
3021 (line-beginning-position)
3022 (line-end-position)
3023 (selected-window))
3024 (when (timerp ivy-occur-timer)
3025 (cancel-timer ivy-occur-timer))
3026 (setq ivy-occur-timer (run-at-time 1.0 nil 'swiper--cleanup))))))))
3027
3028 (defvar ivy-help-file (let ((default-directory
3029 (if load-file-name
3030 (file-name-directory load-file-name)
3031 default-directory)))
3032 (if (file-exists-p "ivy-help.org")
3033 (expand-file-name "ivy-help.org")
3034 (if (file-exists-p "doc/ivy-help.org")
3035 (expand-file-name "doc/ivy-help.org"))))
3036 "The file for `ivy-help'.")
3037
3038 (defun ivy-help ()
3039 "Help for `ivy'."
3040 (interactive)
3041 (let ((buf (get-buffer "*Ivy Help*")))
3042 (unless buf
3043 (setq buf (get-buffer-create "*Ivy Help*"))
3044 (with-current-buffer buf
3045 (insert-file-contents ivy-help-file)
3046 (org-mode)
3047 (view-mode)
3048 (goto-char (point-min))))
3049 (if (eq this-command 'ivy-help)
3050 (switch-to-buffer buf)
3051 (with-ivy-window
3052 (pop-to-buffer buf)))
3053 (view-mode)
3054 (goto-char (point-min))))
3055
3056 (provide 'ivy)
3057
3058 ;;; ivy.el ends here