diff options
author | Kyle Meyer <kyle@kyleam.com> | 2014-02-15 18:38:12 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2014-02-15 18:38:12 -0500 |
commit | 50c6ee6ede035ae35e661a10a5d527c8ccf86338 (patch) | |
tree | b8feb6a033f56edd57b0c0655623b1c282318504 /lisp | |
parent | e22061321f5e788680c74aed9ee6666c797e132b (diff) | |
download | emacs.d-50c6ee6ede035ae35e661a10a5d527c8ccf86338.tar.gz |
Correct ido-everywhere initialization
The function `ido-everywhere' should be called rather than setting the
variable.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/init-ido.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/init-ido.el b/lisp/init-ido.el index 08b46aa..5c37e71 100644 --- a/lisp/init-ido.el +++ b/lisp/init-ido.el @@ -2,7 +2,6 @@ (require-package 'flx-ido) (setq ido-enable-prefix nil - ido-everywhere t ido-enable-flex-matching t ido-create-new-buffer 'always ido-use-filename-at-point 'guess @@ -21,6 +20,7 @@ (setq ido-use-faces nil) (ido-mode 1) +(ido-everywhere 1) (flx-ido-mode 1) ;; Recent files |