diff options
author | Alan Pearce | 2014-06-22 08:53:58 +0100 |
---|---|---|
committer | Alan Pearce | 2014-06-22 08:53:58 +0100 |
commit | f4eb0fcd6a9e2d4a035ff71533c96a806ef15304 (patch) | |
tree | 2bbc402e03832a292a26ea58065f2d4123ff3f84 | |
parent | 562154e68c8ff3f1a02b53c92689e15632475d13 (diff) | |
download | dotfiles-f4eb0fcd6a9e2d4a035ff71533c96a806ef15304.tar.lz dotfiles-f4eb0fcd6a9e2d4a035ff71533c96a806ef15304.tar.zst dotfiles-f4eb0fcd6a9e2d4a035ff71533c96a806ef15304.zip |
Emacs: ido-completing read all the things!
-rw-r--r-- | tag-emacs/emacs.d/init.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tag-emacs/emacs.d/init.el b/tag-emacs/emacs.d/init.el index 2c0cd72..2b2059e 100644 --- a/tag-emacs/emacs.d/init.el +++ b/tag-emacs/emacs.d/init.el @@ -429,7 +429,8 @@ :init (progn (setq ido-save-directory-list-file (expand-file-name "ido-state" user-emacs-directory)) (bind-key* "C-x C-f" #'ido-find-file) - (ido-mode 1)) + (ido-mode 1) + (ido-everywhere 1)) :config (progn (setq ido-auto-merge-delay-time 99999 ido-enable-flex-matching t) |