emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r116216: * lisp/ido.el (ido-use-virtual-buffers): Do


From: Glenn Morris
Subject: [Emacs-diffs] trunk r116216: * lisp/ido.el (ido-use-virtual-buffers): Doc fix.
Date: Fri, 31 Jan 2014 06:35:08 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 116216
revision-id: address@hidden
parent: address@hidden
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Thu 2014-01-30 22:34:44 -0800
message:
  * lisp/ido.el (ido-use-virtual-buffers): Doc fix.
  Reset :version, since the default value has not changed.
  
  * etc/NEWS: Related edits.
modified:
  etc/NEWS                       news-20100311060928-aoit31wvzf25yr1z-1
  lisp/ChangeLog                 changelog-20091113204419-o5vbwnq5f7feedwu-1432
  lisp/ido.el                    ido.el-20091113204419-o5vbwnq5f7feedwu-2430
=== modified file 'etc/NEWS'
--- a/etc/NEWS  2014-01-31 06:20:29 +0000
+++ b/etc/NEWS  2014-01-31 06:34:44 +0000
@@ -558,11 +558,17 @@
 
 ** Ido
 
-*** Ido has a manual now.
-
-*** `ido-use-virtual-buffers' takes a new value 'auto.
-
-*** `ido-decorations' has been slightly extended to give a bit more control.
++++
+*** An Ido user manual is now included.
+
+---
+*** The option `ido-use-virtual-buffers' can now take the value `auto'.
+This means to use virtual buffers if the current ido input does not match
+an existing buffer.
+
+---
+*** The variable `ido-decorations' can optionally have two new elements,
+which are the brackets to use around the sole remaining completion.
 
 ** Image mode
 

=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2014-01-31 06:20:29 +0000
+++ b/lisp/ChangeLog    2014-01-31 06:34:44 +0000
@@ -1,5 +1,8 @@
 2014-01-31  Glenn Morris  <address@hidden>
 
+       * ido.el (ido-use-virtual-buffers): Doc fix.
+       Reset :version, since the default value has not changed.
+
        * register.el (register-preview-delay, register-read-with-preview):
        Doc fixes.
 

=== modified file 'lisp/ido.el'
--- a/lisp/ido.el       2014-01-27 02:02:28 +0000
+++ b/lisp/ido.el       2014-01-31 06:34:44 +0000
@@ -795,13 +795,11 @@
   :group 'ido)
 
 (defcustom ido-use-virtual-buffers nil
-  "Specify how virtual buffers should be used.
-The value can be one of the following:
-
-  nil:  No virtual buffers are used.
-  auto: Use virtual buffers when the current input matches no
-        existing buffers.
+  "If non-nil, refer to past (\"virtual\") buffers as well as existing ones.
+The options are:
+  nil:  Do not use virtual buffers.
   t:    Always use virtual buffers.
+  auto: Use virtual buffers if the current input matches no existing buffer.
 
 Essentially it works as follows: Say you are visiting a file and
 the buffer gets cleaned up by midnight.el.  Later, you want to
@@ -811,10 +809,11 @@
 it, it opens the file back up again.  This allows you to think
 less about whether recently opened files are still open or not.
 Most of the time you can quit Emacs, restart, and then switch to
-a file buffer that was previously open as if it still were.  This
-feature relies upon the `recentf' package, which will be enabled
-if this variable is configured to a non-nil value."
-  :version "24.4"
+a file buffer that was previously open as if it still were.
+
+This feature relies upon the `recentf' package, which will be
+enabled if this variable is configured to a non-nil value."
+  :version "24.1"
   :type '(choice (const :tag "Always" t)
                 (const :tag "Automatic" auto)
                 (const :tag "Never" nil))


reply via email to

[Prev in Thread] Current Thread [Next in Thread]