]> code.delx.au - gnu-emacs-elpa/commitdiff
Merge commit '5a2e0fd355fea83e3c172402b965a1aa826fcc0c' from swiper
authorOleh Krehel <ohwoeowho@gmail.com>
Fri, 1 May 2015 14:22:31 +0000 (16:22 +0200)
committerOleh Krehel <ohwoeowho@gmail.com>
Fri, 1 May 2015 14:22:31 +0000 (16:22 +0200)
1  2 
packages/swiper/Makefile
packages/swiper/colir.el
packages/swiper/counsel.el
packages/swiper/ivy.el
packages/swiper/swiper.el

diff --combined packages/swiper/Makefile
index 7c9910ef3860fcc42ac57673b647fcafc1a3ba6f,b3857c98bfd4ba026e95ac66bef553eb82b286b2..b3857c98bfd4ba026e95ac66bef553eb82b286b2
@@@ -1,6 -1,6 +1,6 @@@
  emacs ?= emacs
  
- LOAD = -l ivy.el -l swiper.el
+ LOAD = -l colir.el -l ivy.el -l swiper.el
  
  .PHONY: all compile clean
  
diff --combined packages/swiper/colir.el
index 0000000000000000000000000000000000000000,f5ce0aef8ac31248a2979b66a85960134b9a29a1..f5ce0aef8ac31248a2979b66a85960134b9a29a1
mode 000000,100644..100644
--- /dev/null
@@@ -1,0 -1,97 +1,97 @@@
+ ;;; colir.el --- Color blending library -*- lexical-binding: t -*-
+ ;; Copyright (C) 2015  Free Software Foundation, Inc.
+ ;; Author: Oleh Krehel <ohwoeowho@gmail.com>
+ ;; This file is part of GNU Emacs.
+ ;; This file is free software; you can redistribute it and/or modify
+ ;; it under the terms of the GNU General Public License as published by
+ ;; the Free Software Foundation; either version 3, or (at your option)
+ ;; any later version.
+ ;; This program is distributed in the hope that it will be useful,
+ ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ ;; GNU General Public License for more details.
+ ;; For a full copy of the GNU General Public License
+ ;; see <http://www.gnu.org/licenses/>.
+ ;;; Commentary:
+ ;;
+ ;; This package solves the problem of adding a face with a background
+ ;; to text which may already have a background.  In all conflicting
+ ;; areas, instead of choosing either the original or the new
+ ;; background face, their blended sum is used.
+ ;;
+ ;; The blend mode functions are taken from http://en.wikipedia.org/wiki/Blend_modes.
+ ;;; Code:
+ (require 'color)
+ (defcustom colir-compose-method 'colir-compose-alpha
+   "Select a method to compose two color channels."
+   :type '(choice
+           (const colir-compose-alpha)
+           (const colir-compose-overlay)
+           (const colir-compose-soft-light))
+   :group 'ivy)
+ (defun colir-compose-soft-light (a b)
+   "Compose A and B channels."
+   (if (< b 0.5)
+       (+ (* 2 a b) (* a a (- 1 b b)))
+     (+ (* 2 a (- 1 b)) (* (sqrt a) (- (* 2 b) 1)))))
+ (defun colir-compose-overlay (a b)
+   "Compose A and B channels."
+   (if (< a 0.5)
+       (* 2 a b)
+     (- 1 (* 2 (- 1 a) (- 1 b)))))
+ (defun colir-compose-alpha (a b &optional alpha gamma)
+   "Compose A and B channels."
+   (setq alpha (or alpha 0.5))
+   (setq gamma (or gamma 2.2))
+   (+ (* (expt a gamma) alpha) (* (expt b gamma) (- 1 alpha))))
+ (defun colir-blend (c1 c2)
+   "Blend the two colors C1 and C2 using `colir-compose-method'.
+ C1 and C2 are triples of floats in [0.0 1.0] range."
+   (apply #'color-rgb-to-hex
+          (cl-mapcar
+           colir-compose-method
+           c1 c2)))
+ (defun colir-blend-face-background (start end face &optional object)
+   "Append to the face property of the text from START to END the face FACE.
+ When the text already has a face with a non-plain background,
+ blend it with the background of FACE.
+ Optional argument OBJECT is the string or buffer containing the text.
+ See also `font-lock-append-text-property'."
+   (let (next prev)
+     (while (/= start end)
+       (setq next (next-single-property-change start 'face object end)
+             prev (get-text-property start 'face object))
+       (if prev
+           (let ((background-prev (face-background prev)))
+             (progn
+               (put-text-property
+                start next 'face
+                (if background-prev
+                    (cons `(background-color
+                            . ,(colir-blend
+                                (color-name-to-rgb background-prev)
+                                (color-name-to-rgb (face-background face nil t))))
+                          prev)
+                  (list face prev))
+                object)))
+         (put-text-property start next 'face face object))
+       (setq start next))))
+ (provide 'colir)
+ ;;; colir.el ends here
index f41608d8322b837687f43f3766d8d141e2bb72bd,27825fe9d7ed3664eeba34d1eb223fe593e3fac0..27825fe9d7ed3664eeba34d1eb223fe593e3fac0
          (setq ivy--full-length (counsel-git-grep-count ivy-text)))
        (split-string res "\n" t))))
  
- (defun counsel-git-grep ()
+ (defun counsel-git-grep (&optional initial-input)
    "Grep for a string in the current git repository."
    (interactive)
    (unwind-protect
                                            (setq swiper--window (selected-window))
                                            (swiper--cleanup)
                                            (swiper--add-overlays (ivy--regex ivy-text)))))
-               (val (ivy-read "pattern: " 'counsel-git-grep-function)))
+               (val (ivy-read "pattern: " 'counsel-git-grep-function
+                              :initial-input initial-input)))
           (when val
             (funcall ivy--persistent-action val)))
      (swiper--cleanup)))
diff --combined packages/swiper/ivy.el
index ed9d3f90e23c924dc85e258f2f95711c2eaa3bdd,a6d3c4fed67db75e3966740fefd7268639f159f0..4fba496920acd52753e2ea011f699e5c3ab09273
--- 2/ivy.el
@@@ -36,8 -36,6 +36,8 @@@
  ;; re-building it into a regex.
  ;; So "for example" is transformed into "\\(for\\).*\\(example\\)".
  
 +(require 'cl-lib)
 +
  ;;; Code:
  (require 'cl-lib)
  
    '((t (:inherit highlight)))
    "Face used by Ivy for highlighting first match.")
  
+ (defface ivy-confirm-face
+   '((t :foreground "ForestGreen" :inherit minibuffer-prompt))
+   "Face used by Ivy to issue a confirmation prompt.")
+ (defface ivy-match-required-face
+   '((t :foreground "red" :inherit minibuffer-prompt))
+   "Face used by Ivy to issue a match required prompt.")
  (defface ivy-subdir
-   '((t (:weight bold)))
+   '((t (:inherit 'dired-directory)))
    "Face used by Ivy for highlighting subdirs in the alternatives.")
  
+ (defface ivy-remote
+   '((t (:foreground "#110099")))
+   "Face used by Ivy for highlighting remotes in the alternatives.")
  (defcustom ivy-height 10
    "Number of lines for the minibuffer window."
    :type 'integer)
@@@ -84,6 -94,7 +96,7 @@@ Only \"./\" and \"../\" apply here. The
    (let ((map (make-sparse-keymap)))
      (define-key map (kbd "C-m") 'ivy-done)
      (define-key map (kbd "C-j") 'ivy-alt-done)
+     (define-key map (kbd "TAB") 'ivy-partial-or-done)
      (define-key map (kbd "C-n") 'ivy-next-line)
      (define-key map (kbd "C-p") 'ivy-previous-line)
      (define-key map (kbd "<down>") 'ivy-next-line)
@@@ -114,7 -125,10 +127,10 @@@ Maximum length of the history list is d
  of `history-length', which see.")
  
  (defvar ivy-require-match t
-   "Store require-match. See `completing-read'.")
+   "Store require-match.  See `completing-read'.")
+ (defvar ivy-def nil
+   "Store the default completion value.  See `completing-read'.")
  
  (defvar ivy--directory nil
    "Current directory when completing file names.")
@@@ -157,6 -171,9 +173,9 @@@ Otherwise, store nil."
    "Store the format-style prompt.
  When non-nil, it should contain one %d.")
  
+ (defvar ivy--prompt-extra ""
+   "Temporary modifications to the prompt.")
  (defvar ivy--old-re nil
    "Store the old regexp.")
  
  (defvar ivy--regex-function 'ivy--regex
    "Current function for building a regex.")
  
+ (defvar ivy--collection nil
+   "Store the current collection function.")
  (defvar Info-current-file)
  
  ;;** Commands
    (interactive)
    (delete-minibuffer-contents)
    (when (cond (ivy--directory
-                (insert
-                 (if (zerop ivy--length)
-                     (expand-file-name ivy-text ivy--directory)
-                   (expand-file-name ivy--current ivy--directory)))
-                (setq ivy-exit 'done))
+                (if (zerop ivy--length)
+                    (if (or (not (eq confirm-nonexistent-file-or-buffer t))
+                            (equal " (confirm)" ivy--prompt-extra))
+                        (progn
+                          (insert
+                           (expand-file-name ivy-text ivy--directory))
+                          (setq ivy-exit 'done))
+                      (setq ivy--prompt-extra " (confirm)")
+                      (insert ivy-text)
+                      (ivy--exhibit)
+                      nil)
+                  (insert
+                   (expand-file-name
+                    ivy--current ivy--directory))
+                  (setq ivy-exit 'done)))
                ((zerop ivy--length)
                 (if (memq ivy-require-match
                           '(nil confirm confirm-after-completion))
                     (progn
                       (insert ivy-text)
                       (setq ivy-exit 'done))
-                  (unless (string-match "match required" ivy--prompt)
-                    (setq ivy--prompt
-                          (if (string-match ": $" ivy--prompt)
-                              (concat
-                               (substring ivy--prompt 0 -2)
-                               " (match required): ")
-                            (concat
-                             ivy--prompt
-                             "(match required) "))))
+                  (setq ivy--prompt-extra " (match required)")
                   (insert ivy-text)
                   (ivy--exhibit)
                   nil))
                 (setq ivy-exit 'done)))
      (exit-minibuffer)))
  
+ (defun ivy-build-tramp-name (x)
+   "Reconstruct X into a path.
+ Is is a cons cell, related to `tramp-get-completion-function'."
+   (let ((user (car x))
+         (domain (cadr x)))
+     (if user
+         (concat user "@" domain)
+       domain)))
  (defun ivy-alt-done (&optional arg)
    "Exit the minibuffer with the selected candidate.
  When ARG is t, exit with current text, ignoring the candidates."
    (if arg
        (ivy-immediate-done)
      (let (dir)
-       (if (and ivy--directory
-                (not (string= ivy--current "./"))
-                (cl-plusp ivy--length)
-                (file-directory-p
-                 (setq dir (expand-file-name
-                            ivy--current ivy--directory))))
-           (progn
-             (ivy--cd dir)
-             (ivy--exhibit))
-         (ivy-done)))))
+       (cond ((and ivy--directory
+                   (or
+                    (and
+                     (not (string= ivy--current "./"))
+                     (cl-plusp ivy--length)
+                     (file-directory-p
+                      (setq dir (expand-file-name
+                                 ivy--current ivy--directory))))))
+              (ivy--cd dir)
+              (ivy--exhibit))
+             ((string-match "^/\\([^/]+?\\):\\(?:\\(.*\\)@\\)?" ivy-text)
+              (let ((method (match-string 1 ivy-text))
+                    (user (match-string 2 ivy-text))
+                    res)
+                (dolist (x (tramp-get-completion-function method))
+                  (setq res (append res (funcall (car x) (cadr x)))))
+                (setq res (delq nil res))
+                (when user
+                  (dolist (x res)
+                    (setcar x user)))
+                (setq res (cl-delete-duplicates res :test 'equal))
+                (let ((host (ivy-read "Find File: "
+                                      (mapcar #'ivy-build-tramp-name res))))
+                  (when host
+                    (setq ivy--directory "/")
+                    (ivy--cd (concat "/" method ":" host ":"))))))
+             (t
+              (ivy-done))))))
+ (defun ivy-partial-or-done ()
+   "Complete the minibuffer text as much as possible.
+ When called twice in a row, exit the minibuffer with the current
+ candidate."
+   (interactive)
+   (if (eq this-command last-command)
+       (progn
+         (delete-minibuffer-contents)
+         (insert ivy--current)
+         (setq ivy-exit 'done)
+         (exit-minibuffer))
+     (let* ((parts (split-string ivy-text " " t))
+            (postfix (car (last parts)))
+            (new (try-completion postfix
+                                 (mapcar (lambda (str) (substring str (string-match postfix str)))
+                                         ivy--old-cands))))
+       (delete-region (minibuffer-prompt-end) (point-max))
+       (setcar (last parts) new)
+       (insert (mapconcat #'identity parts " ") " "))))
  
  (defun ivy-immediate-done ()
    "Exit the minibuffer with the current input."
@@@ -308,19 -377,33 +379,33 @@@ If the input is empty, select the previ
    "Forward to `previous-history-element' with ARG."
    (interactive "p")
    (previous-history-element arg)
-   (move-end-of-line 1))
+   (move-end-of-line 1)
+   (ivy--maybe-scroll-history))
  
  (defun ivy-next-history-element (arg)
    "Forward to `next-history-element' with ARG."
    (interactive "p")
    (next-history-element arg)
-   (move-end-of-line 1))
+   (move-end-of-line 1)
+   (ivy--maybe-scroll-history))
+ (defun ivy--maybe-scroll-history ()
+   "If the selected history element has an index, scroll there."
+   (let ((idx (ignore-errors
+                (get-text-property
+                 (minibuffer-prompt-end)
+                 'ivy-index))))
+     (when idx
+       (ivy--exhibit)
+       (setq ivy--index idx))))
  
  (defun ivy--cd (dir)
    "When completing file names, move to directory DIR."
    (if (null ivy--directory)
        (error "Unexpected")
      (setq ivy--old-cands nil)
+     (setq ivy--old-re nil)
+     (setq ivy--index 0)
      (setq ivy--all-candidates
            (ivy--sorted-files (setq ivy--directory dir)))
      (setq ivy-text "")
@@@ -373,11 -456,20 +458,20 @@@ For each entry, nil means no sorting
  The entry associated to t is used for all fall-through cases.")
  
  (defvar ivy-re-builders-alist
-   '((t . ivy--regex))
+   '((t . ivy--regex-plus))
    "An alist of regex building functions for each collection function.
- Each function should take a string and return a valid regex.
+ Each function should take a string and return a valid regex or a
+ regex sequence (see below).
  The entry associated to t is used for all fall-through cases.
- Possible choices: `ivy--regex', `regexp-quote'.")
+ Possible choices: `ivy--regex', `regexp-quote', `ivy--regex-plus'.
+ In case a function returns a list, it should look like this:
+ '((\"matching-regexp\" . t) (\"non-matching-regexp\") ...).
+ The matches will be filtered in a sequence, you can mix the
+ regexps that should match and that should not match as you
+ like.")
  
  (defcustom ivy-sort-max-size 30000
    "Sorting won't be done for collections larger than this."
@@@ -429,6 -521,7 +523,7 @@@ UPDATE-FN is called each time the curre
  When SORT is t, refer to `ivy-sort-functions-alist' for sorting."
    (setq ivy--directory nil)
    (setq ivy-require-match require-match)
+   (setq ivy-def preselect)
    (setq ivy-window (selected-window))
    (setq ivy--regex-function
          (or (and (functionp collection)
              'ivy--regex))
    (setq ivy--subexps 0)
    (setq ivy--regexp-quote 'regexp-quote)
+   (setq ivy--collection (and (functionp collection)
+                              collection))
+   (setq ivy--old-text "")
+   (setq ivy-text "")
    (let (coll sort-fn)
      (cond ((eq collection 'Info-read-node-name-1)
             (if (equal Info-current-file "dir")
                           (equal initial-input default-directory))
                 (setq coll (cons initial-input coll)))
               (setq initial-input nil)))
+           ((eq collection 'internal-complete-buffer)
+            (setq coll
+                  (mapcar (lambda (x)
+                            (if (with-current-buffer x
+                                  (file-remote-p
+                                   (abbreviate-file-name default-directory)))
+                                (propertize x 'face 'ivy-remote)
+                              x))
+                          (all-completions "" collection predicate))))
            ((or (functionp collection)
                 (vectorp collection)
                 (listp (car collection)))
                (setq coll (cl-sort (copy-sequence coll) sort-fn))))))
      (when preselect
        (unless (or require-match
-                   (member preselect coll))
+                   (cl-find-if `(lambda (x)
+                                  (string-match ,(format "^%s" preselect) x))
+                               coll))
          (setq coll (cons preselect coll))))
      (setq ivy--index (or
                        (and preselect
                        0))
      (setq ivy--old-re nil)
      (setq ivy--old-cands nil)
-     (setq ivy-text "")
      (setq ivy--all-candidates coll)
      (setq ivy--update-fn update-fn)
      (setq ivy-exit nil)
                              nil
                              hist)))
                   (when (eq ivy-exit 'done)
-                    (set hist (cons ivy-text
+                    (set hist (cons (propertize ivy-text 'ivy-index ivy--index)
                                     (delete ivy-text
                                             (cdr (symbol-value hist)))))
                     res)))
@@@ -531,20 -638,18 +640,18 @@@ PROMPT is a string to prompt with; norm
  COLLECTION can be a list of strings, an alist, an obarray or a hash table.
  PREDICATE limits completion to a subset of COLLECTION.
  
- REQUIRE-MATCH is stored into `ivy-require-match'. See `completing-read'.
+ REQUIRE-MATCH is stored into `ivy-require-match'.  See `completing-read'.
  INITIAL-INPUT is a string that can be inserted into the minibuffer initially.
  _HISTORY is ignored for now.
  DEF is the default value.
  _INHERIT-INPUT-METHOD is ignored for now.
  
  The history, defaults and input-method arguments are ignored for now."
-   (when (listp def)
-     (setq def (car def)))
    (ivy-read prompt collection
              :predicate predicate
              :require-match require-match
              :initial-input initial-input
-             :preselect def
+             :preselect (if (listp def) (car def) def)
              :history history
              :keymap nil
              :sort t))
@@@ -614,6 -719,24 +721,24 @@@ When GREEDY is non-nil, join words in 
                              ".*?")))))
                      ivy--regex-hash)))))
  
+ (defun ivy--regex-plus (str)
+   "Build a regex sequence from STR.
+ Spaces are wild, everything before \"!\" should match.
+ Everything after \"!\" should not match."
+   (let ((parts (split-string str "!" t)))
+     (cl-case (length parts)
+       (0
+        "")
+       (1
+        (ivy--regex (car parts)))
+       (2
+        (let ((res
+               (mapcar #'list
+                       (split-string (cadr parts) " " t))))
+          (cons (cons (ivy--regex (car parts)) t)
+                res)))
+       (t (error "Unexpected: use only one !")))))
  ;;** Rest
  (defun ivy--minibuffer-setup ()
    "Setup ivy completion in the minibuffer."
  (defvar ivy--full-length nil
    "When `ivy--dynamic-function' is non-nil, this can be the total amount of candidates.")
  
- (defvar ivy--old-text nil
+ (defvar ivy--old-text ""
    "Store old `ivy-text' for dynamic completion.")
  
  (defun ivy--insert-prompt ()
    "Update the prompt according to `ivy--prompt'."
    (when ivy--prompt
-     (let ((inhibit-read-only t)
-           (n-str
-            (format
-             (if ivy--directory
-                 (concat ivy--prompt (abbreviate-file-name ivy--directory))
-               ivy--prompt)
-             (or (and ivy--dynamic-function
-                      ivy--full-length)
-                 ivy--length))))
-       (save-excursion
-         (goto-char (point-min))
-         (delete-region (point-min) (minibuffer-prompt-end))
-         (set-text-properties
-          0 (length n-str)
-          '(front-sticky t rear-nonsticky t field t read-only t face minibuffer-prompt)
-          n-str)
-         (insert n-str))
-       ;; get out of the prompt area
-       (constrain-to-field nil (point-max)))))
+     (unless (memq this-command '(ivy-done ivy-alt-done ivy-partial-or-done))
+       (setq ivy--prompt-extra ""))
+     (let (head tail)
+       (if (string-match "\\(.*\\): $" ivy--prompt)
+           (progn
+             (setq head (match-string 1 ivy--prompt))
+             (setq tail ": "))
+         (setq head (substring ivy--prompt 0 -1))
+         (setq tail " "))
+       (let ((inhibit-read-only t)
+             (std-props '(front-sticky t rear-nonsticky t field t read-only t))
+             (n-str
+              (format
+               (concat head
+                       ivy--prompt-extra
+                       tail
+                       (if ivy--directory
+                           (abbreviate-file-name ivy--directory)
+                         ""))
+               (or (and ivy--dynamic-function
+                        ivy--full-length)
+                   ivy--length))))
+         (save-excursion
+           (goto-char (point-min))
+           (delete-region (point-min) (minibuffer-prompt-end))
+           (set-text-properties 0 (length n-str)
+                                `(face minibuffer-prompt ,@std-props)
+                                n-str)
+           (ivy--set-match-props n-str "confirm"
+                                 `(face ivy-confirm-face ,@std-props))
+           (ivy--set-match-props n-str "match required"
+                                 `(face ivy-match-required-face ,@std-props))
+           (insert n-str))
+         ;; get out of the prompt area
+         (constrain-to-field nil (point-max))))))
+ (defun ivy--set-match-props (str match props)
+   "Set STR text proprties that match MATCH to PROPS."
+   (when (string-match match str)
+     (set-text-properties
+      (match-beginning 0)
+      (match-end 0)
+      props
+      str)))
  
  (defvar inhibit-message)
  
@@@ -681,26 -829,41 +831,41 @@@ Should be run via minibuffer `post-comm
        ;; while-no-input would cause annoying
        ;; "Waiting for process to die...done" message interruptions
        (let ((inhibit-message t))
-        (while-no-input
-          (unless (equal ivy--old-text ivy-text)
-            (let ((store ivy--dynamic-function)
-                  (ivy--dynamic-function nil))
-              (setq ivy--all-candidates (funcall store ivy-text)))
-            (setq ivy--old-text ivy-text))
-          (ivy--insert-minibuffer (ivy--format ivy--all-candidates))))
-     (when ivy--directory
-       (if (string-match "/$" ivy-text)
-           (if (member ivy-text ivy--all-candidates)
-               (ivy--cd (expand-file-name ivy-text ivy--directory))
-             (when (string-match "//$" ivy-text)
-               (ivy--cd "/")))
-         (if (string-match "~$" ivy-text)
-             (ivy--cd (expand-file-name "~/")))))
+         (while-no-input
+           (unless (equal ivy--old-text ivy-text)
+             (let ((store ivy--dynamic-function)
+                   (ivy--dynamic-function nil))
+               (setq ivy--all-candidates (funcall store ivy-text))))
+           (ivy--insert-minibuffer (ivy--format ivy--all-candidates))))
+     (cond (ivy--directory
+            (if (string-match "/$" ivy-text)
+                (if (member ivy-text ivy--all-candidates)
+                    (ivy--cd (expand-file-name ivy-text ivy--directory))
+                  (when (string-match "//$" ivy-text)
+                    (ivy--cd "/")))
+              (if (string-match "~$" ivy-text)
+                  (ivy--cd (expand-file-name "~/")))))
+           ((eq ivy--collection 'internal-complete-buffer)
+            (when (or (and (string-match "^ " ivy-text)
+                           (not (string-match "^ " ivy--old-text)))
+                      (and (string-match "^ " ivy--old-text)
+                           (not (string-match "^ " ivy-text))))
+              (setq ivy--all-candidates
+                    (all-completions
+                     (if (and (> (length ivy-text) 0)
+                              (eq (aref ivy-text 0)
+                                  ?\ ))
+                         " "
+                       "")
+                     'internal-complete-buffer))
+              (setq ivy--old-re nil))))
      (ivy--insert-minibuffer
       (ivy--format
-       (ivy--filter ivy-text ivy--all-candidates)))))
+       (ivy--filter ivy-text ivy--all-candidates))))
+   (setq ivy--old-text ivy-text))
  
  (defun ivy--insert-minibuffer (text)
+   "Insert TEXT into minibuffer with appropriate cleanup."
    (ivy--cleanup)
    (let ((buffer-undo-list t)
          deactivate-mark)
    "Propertize STR with FACE.
  `font-lock-append-text-property' is used, since it's better than
  `propertize' or `add-face-text-property' in this case."
-   (ignore-errors
-     (font-lock-append-text-property 0 (length str) 'face face str))
+   (require 'colir)
+   (condition-case nil
+       (colir-blend-face-background 0 (length str) face str)
+     (error
+      (ignore-errors
+        (font-lock-append-text-property 0 (length str) 'face face str))))
    str)
  
  (defun ivy--filter (name candidates)
-   "Return the matches for NAME for CANDIDATES.
+   "Return all items that match NAME in CANDIDATES.
  CANDIDATES are assumed to be static."
    (let* ((re (funcall ivy--regex-function name))
           (cands (cond ((and (equal re ivy--old-re)
                              ivy--old-cands)
                         ivy--old-cands)
                        ((and ivy--old-re
+                             (stringp re)
+                             (stringp ivy--old-re)
                              (not (string-match "\\\\" ivy--old-re))
                              (not (equal ivy--old-re ""))
                              (memq (cl-search
                            (lambda (x) (string-match re x))
                            ivy--old-cands)))
                        (t
-                        (ignore-errors
-                          (cl-remove-if-not
-                           (lambda (x) (string-match re x))
-                           candidates)))))
+                        (let ((re-list (if (stringp re) (list (cons re t)) re))
+                              (res candidates))
+                          (dolist (re re-list)
+                            (setq res
+                                  (ignore-errors
+                                    (funcall
+                                     (if (cdr re)
+                                         #'cl-remove-if-not
+                                       #'cl-remove-if)
+                                     `(lambda (x) (string-match ,(car re) x))
+                                     res))))
+                          res))))
           (tail (nthcdr ivy--index ivy--old-cands))
           idx)
      (when (and tail ivy--old-cands)
            ;; Compare with eq to handle equal duplicates in cands
            (setq idx (cl-position (pop tail) cands)))
          (setq ivy--index (or idx 0))))
+     (when (and (string= name "") (not (equal ivy--old-re "")))
+       (setq ivy--index
+             (or (cl-position ivy-def cands :test 'equal)
+                 ivy--index)))
      (setq ivy--old-re re)
      (setq ivy--old-cands cands)))
  
index 114acb193c333ae849f8b978b9e5651af7951de1,d15ed80e4060a0313626ae923527e7c66e170567..d15ed80e4060a0313626ae923527e7c66e170567
  
  (defface swiper-match-face-1
    '((t (:inherit isearch-lazy-highlight-face)))
-   "Face for `swiper' matches.")
+   "The background face for `swiper' matches.")
  
  (defface swiper-match-face-2
    '((t (:inherit isearch)))
-   "Face for `swiper' matches.")
+   "Face for `swiper' matches modulo 1.")
  
  (defface swiper-match-face-3
    '((t (:inherit match)))
-   "Face for `swiper' matches.")
+   "Face for `swiper' matches modulo 2.")
  
  (defface swiper-match-face-4
-   '((t (:inherit isearch)))
-   "Face for `swiper' matches.")
+   '((t (:inherit isearch-fail)))
+   "Face for `swiper' matches modulo 3.")
  
  (defface swiper-line-face
    '((t (:inherit highlight)))
                                   emms-playlist-mode erc-mode
                                   org-agenda-mode
                                   dired-mode
-                                  jabber-chat-mode)))
+                                  jabber-chat-mode
+                                  elfeed-search-mode)))
      (unless (> (buffer-size) 100000)
        (if (fboundp 'font-lock-ensure)
            (font-lock-ensure)
@@@ -270,11 -271,11 +271,11 @@@ BEG and END, when specified, are the po
                                               (match-end i)))
                        (face
                         (cond ((zerop ivy--subexps)
-                               (cl-caddr swiper-faces))
+                               (cadr swiper-faces))
                               ((zerop i)
                                (car swiper-faces))
                               (t
-                               (nth (1+ (mod (1- i) (1- (length swiper-faces))))
+                               (nth (1+ (mod (+ i 2) (1- (length swiper-faces))))
                                     swiper-faces)))))
                    (push overlay swiper--overlays)
                    (overlay-put overlay 'face face)