Variable: ido-buffer-disable-smart-matches
ido-buffer-disable-smart-matches is a customizable variable defined in
ido.el.gz.
Value
t
Documentation
Non-nil means not to re-order matches for buffer switching.
By default, Ido arranges matches in the following order:
full-matches > suffix matches > prefix matches > remaining matches
which can get in the way for buffer switching.
This variable was added, or its default value changed, in Emacs 24.3.
Source Code
;; Defined in /usr/src/emacs/lisp/ido.el.gz
;; See https://debbugs.gnu.org/2042 for more info.
(defcustom ido-buffer-disable-smart-matches t
"Non-nil means not to re-order matches for buffer switching.
By default, Ido arranges matches in the following order:
full-matches > suffix matches > prefix matches > remaining matches
which can get in the way for buffer switching."
:version "24.3"
:type 'boolean)