]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/ido.el (ido-completions): Use extra elements of ido-decorations.
authorStefan Monnier <monnier@iro.umontreal.ca>
Fri, 5 Apr 2013 14:00:08 +0000 (10:00 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Fri, 5 Apr 2013 14:00:08 +0000 (10:00 -0400)
(ido-decorations): Update docstring.

Fixes: debbugs:14143
etc/NEWS
lisp/ChangeLog
lisp/ido.el

index 1d416dd3737e72956fefce5fe7fce1e0f23d9873..d893f496ef0e46a97e1aed5df72c3cbabb05cd75 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -87,6 +87,8 @@ Eg View mode, etc.
 \f
 * Changes in Specialized Modes and Packages in Emacs 24.4
 
+** `ido-decorations' has been slightly extended to give a bit more control.
+
 ** More packages look for ~/.emacs.d/<foo> additionally to ~/.<foo>.
 Affected files:
 ~/.emacs.d/timelog     replaces  ~/.timelog
index b77bfb3ab4e40365cd51e12dec5b4f4323c9120e..eac9a7b0006bb8b83666caa19b25d92586e780f4 100644 (file)
@@ -1,3 +1,9 @@
+2013-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * ido.el (ido-completions): Use extra elements of ido-decorations
+       (bug#14143).
+       (ido-decorations): Update docstring.
+
 2013-04-05  Michael Albinus  <michael.albinus@gmx.de>
 
        * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
index 7ace1811daaabe7b6a60b146f122e9a6a89865cc..bedf00e638db528d3e978dc6648f57fde46bc128 100644 (file)
@@ -765,7 +765,7 @@ Obsolete.  Set 3rd element of `ido-decorations' instead."
 
 (defcustom ido-decorations '( "{" "}" " | " " | ..." "[" "]" " [No match]" " [Matched]" " [Not readable]" " [Too big]" " [Confirm]")
   "List of strings used by ido to display the alternatives in the minibuffer.
-There are 11 elements in this list:
+There are between 11 and 13 elements in this list:
 1st and 2nd elements are used as brackets around the prospect list,
 3rd element is the separator between prospects (ignored if `ido-separator' is set),
 4th element is the string inserted at the end of a truncated list of prospects,
@@ -775,7 +775,9 @@ can be completed using TAB,
 8th element is displayed if there is a single match (and faces are not used),
 9th element is displayed when the current directory is non-readable,
 10th element is displayed when directory exceeds `ido-max-directory-size',
-11th element is displayed to confirm creating new file or buffer."
+11th element is displayed to confirm creating new file or buffer.
+12th and 13th elements (if present) are used as brackets around the sole
+remaining completion.  If absent, elements 5 and 6 are used instead."
   :type '(repeat string)
   :group 'ido)
 
@@ -4581,10 +4583,12 @@ For details of keybindings, see `ido-find-file'."
                          (string-equal (match-string 0 (ido-name (car comps)))
                                        (ido-name (car comps))))
                        ""
-                     ;; when there is one match, show the matching file name in full
-                     (concat (nth 4 ido-decorations)  ;; [ ... ]
-                             (ido-name (car comps))
-                             (nth 5 ido-decorations)))
+                     ;; When there is only one match, show the matching file
+                     ;; name in full, wrapped in [ ... ].
+                     (concat
+                      (or (nth 11 ido-decorations) (nth 4 ido-decorations))
+                      (ido-name (car comps))
+                      (or (nth 12 ido-decorations) (nth 5 ido-decorations))))
                   (if (not ido-use-faces) (nth 7 ido-decorations))))  ;; [Matched]
          (t                            ;multiple matches
           (let* ((items (if (> ido-max-prospects 0) (1+ ido-max-prospects) 999))