diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2012-09-30 14:28:50 +0200 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2012-09-30 14:28:50 +0200 |
commit | ee41332bd8a529ee7ce96b4d19d350f6fcc5248c (patch) | |
tree | 2c32aae7f2c3187311423fce665bd5cce30cea53 /lisp/ido.el | |
parent | 427730ebdec426ceaae9ab04c9b0951ac8bbb923 (diff) | |
download | emacs-ee41332bd8a529ee7ce96b4d19d350f6fcc5248c.tar.gz |
lisp/ido.el (ido-max-directory-size): Default to nil.
The current default is small for POSIX systems, and impractical
on Windows 7 now that lstat returns directory sizes for NTFS.
Diffstat (limited to 'lisp/ido.el')
-rw-r--r-- | lisp/ido.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/ido.el b/lisp/ido.el index f511dbbf8ac..94818fe57b0 100644 --- a/lisp/ido.el +++ b/lisp/ido.el @@ -714,7 +714,7 @@ See also `ido-dir-file-cache' and `ido-save-directory-list-file'." :type 'integer :group 'ido) -(defcustom ido-max-directory-size 30000 +(defcustom ido-max-directory-size nil "Maximum size (in bytes) for directories to use ido completion. If you enter a directory with a size larger than this size, ido will not provide the normal completion. To show the completions, use C-a." |