[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] master 8c936bc 21/57: ivy.el (ivy-use-virtual-buffers): New defcu
From: |
Oleh Krehel |
Subject: |
[elpa] master 8c936bc 21/57: ivy.el (ivy-use-virtual-buffers): New defcustom |
Date: |
Tue, 19 May 2015 14:21:28 +0000 |
branch: master
commit 8c936bc43753a3b4ab3e439a8eb28e04761e93d7
Author: Oleh Krehel <address@hidden>
Commit: Oleh Krehel <address@hidden>
ivy.el (ivy-use-virtual-buffers): New defcustom
Re #84
---
ivy.el | 7 +++++--
1 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/ivy.el b/ivy.el
index 2168fb2..a9a3425 100644
--- a/ivy.el
+++ b/ivy.el
@@ -87,6 +87,10 @@ This is usually meant as a quick exit out of the minibuffer."
Only \"./\" and \"../\" apply here. They appear in reverse order."
:type 'list)
+(defcustom ivy-use-virtual-buffers nil
+ "When non-nil, add `recentf-mode' and bookmarks to the list of buffers."
+ :type 'boolean)
+
;;* Keymap
(require 'delsel)
(defvar ivy-minibuffer-map
@@ -1099,7 +1103,6 @@ CANDS is a list of strings."
(defvar ido-use-faces)
(defvar ido-process-ignore-lists)
(defvar ido-ignored-list)
-(defvar ido-use-virtual-buffers)
(declare-function ido-make-buffer-list "ido")
(defun ivy--virtual-buffers ()
@@ -1143,7 +1146,7 @@ See `ido-make-buffer-list'."
(delete-dups
(append (ido-make-buffer-list nil)
(and
- ido-use-virtual-buffers
+ ivy-use-virtual-buffers
(ivy--virtual-buffers))))))
(defun ivy-switch-buffer ()
- [elpa] master fb3fce9 13/57: Add parents using 'display for `counsel-load-library', (continued)
- [elpa] master fb3fce9 13/57: Add parents using 'display for `counsel-load-library', Oleh Krehel, 2015/05/19
- [elpa] master 5601653 06/57: Require dired when completing file names, Oleh Krehel, 2015/05/19
- [elpa] master 4a7ba2f 15/57: Try to prevent the resize of minibuffer window, Oleh Krehel, 2015/05/19
- [elpa] master 5a451a9 26/57: ivy.el (ivy-read): Add a re-builder argument, Oleh Krehel, 2015/05/19
- [elpa] master f7fc3ad 11/57: Work around grep-read-files, Oleh Krehel, 2015/05/19
- [elpa] master 056614d 22/57: Rename avy-swiper to swiper-avy, Oleh Krehel, 2015/05/19
- [elpa] master cf292da 23/57: Declare swiper-map, Oleh Krehel, 2015/05/19
- [elpa] master a953af0 19/57: Simplify ivy-partial-or-done, Oleh Krehel, 2015/05/19
- [elpa] master fe34d2c 10/57: ivy.el (ivy-partial-or-done): Handle empty input, Oleh Krehel, 2015/05/19
- [elpa] master 77abf00 25/57: ivy.el (ivy-backward-kill-word): Add and bind to "M-DEL", Oleh Krehel, 2015/05/19
- [elpa] master 8c936bc 21/57: ivy.el (ivy-use-virtual-buffers): New defcustom,
Oleh Krehel <=
- [elpa] master 9b9885d 33/57: ivy.el (ivy-partial-or-done): Fixup, Oleh Krehel, 2015/05/19
- [elpa] master d841418 24/57: Fix the transition from a bad regex to good one, Oleh Krehel, 2015/05/19
- [elpa] master 2ad5fb1 20/57: Add support for virtual buffers, Oleh Krehel, 2015/05/19
- [elpa] master f97622d 30/57: swiper.el (swiper-font-lock-ensure): Ignore fundamental-mode, Oleh Krehel, 2015/05/19
- [elpa] master 6d4f2b3 34/57: Fix the error switching to non-existent buffers, Oleh Krehel, 2015/05/19
- [elpa] master 16eb4a2 31/57: When completing file names, defer to `minibuffer-complete' for "TAB", Oleh Krehel, 2015/05/19
- [elpa] master b63c358 35/57: Properly update virtual buffers for "^ " interaction, Oleh Krehel, 2015/05/19
- [elpa] master d8f79fa 43/57: ivy.el (ivy-partial-or-done): Update doc, Oleh Krehel, 2015/05/19
- [elpa] master ce0efb3 29/57: Allow to customize the minibuffer formatter, Oleh Krehel, 2015/05/19
- [elpa] master 9a2083a 27/57: Swiper should use the :re-builder argument, Oleh Krehel, 2015/05/19