diff options
author | Kyle Meyer <kyle@kyleam.com> | 2014-01-28 14:59:03 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2014-01-28 14:59:03 -0500 |
commit | 7feaf7a6c17e7637aa7d33cbf6581955ec26899c (patch) | |
tree | f5fd4181943b1249f7fc88ff58b3569831398632 /lisp | |
parent | c7351af8c85f258386203b5478b75116df25817b (diff) | |
download | emacs.d-7feaf7a6c17e7637aa7d33cbf6581955ec26899c.tar.gz |
Set preferred extension order for ido completion
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/init-ido.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/init-ido.el b/lisp/init-ido.el index ad21ccc..9c7d8c1 100644 --- a/lisp/init-ido.el +++ b/lisp/init-ido.el @@ -10,6 +10,9 @@ ido-save-directory-list-file "~/.emacs.d/cache/ido.hist" ido-max-directory-size 100000) +(setq ido-file-extensions-order + '(".org" ".txt" ".md" ".rst" ".tex" ".py" ".el" ".hs")) + ;; Disable ido faces to see flx highlights. (setq ido-use-faces nil) |