diff options
author | Kyle Meyer <kyle@kyleam.com> | 2014-01-28 14:59:22 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2014-01-28 14:59:22 -0500 |
commit | 1a25efe5135f3e48007e6cb80a8fb15c31489c3b (patch) | |
tree | be3c108083a92912fe7c42f88dc9d12fdfd792d1 | |
parent | 7feaf7a6c17e7637aa7d33cbf6581955ec26899c (diff) | |
download | emacs.d-1a25efe5135f3e48007e6cb80a8fb15c31489c3b.tar.gz |
Add ignored extensions for ido completion
-rw-r--r-- | lisp/init-ido.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/init-ido.el b/lisp/init-ido.el index 9c7d8c1..08b46aa 100644 --- a/lisp/init-ido.el +++ b/lisp/init-ido.el @@ -13,6 +13,10 @@ (setq ido-file-extensions-order '(".org" ".txt" ".md" ".rst" ".tex" ".py" ".el" ".hs")) +(setq completion-ignored-extensions + (append '(".pdf" ".out" ".log" ".fls" ".fdb" ".fdb_latexmk") + completion-ignored-extensions)) + ;; Disable ido faces to see flx highlights. (setq ido-use-faces nil) |