mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-04-27 16:51:06 -07:00
(completion-ignored-extensions): Add file extensions
of Python byte-compiled files.
This commit is contained in:
parent
a1bcf785a0
commit
7c226e4010
2 changed files with 8 additions and 1 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2004-06-12 J,Ai(Br,At(Bme Marant <jerome@marant.org> (tiny change)
|
||||
|
||||
* bindings.el (completion-ignored-extensions): Add file extensions
|
||||
of Python byte-compiled files.
|
||||
|
||||
2004-06-12 Juri Linkov <juri@jurta.org>
|
||||
|
||||
* info.el (Info-goto-node): Add autoload.
|
||||
|
|
|
|||
|
|
@ -524,7 +524,9 @@ is okay. See `mode-line-format'.")
|
|||
;; files you do want to see, not just TeX stuff. -- fx
|
||||
".toc" ".aux"
|
||||
".cp" ".fn" ".ky" ".pg" ".tp" ".vr"
|
||||
".cps" ".fns" ".kys" ".pgs" ".tps" ".vrs")))
|
||||
".cps" ".fns" ".kys" ".pgs" ".tps" ".vrs"
|
||||
;; Python byte-compiled
|
||||
".pyc" ".pyo")))
|
||||
|
||||
;; Suffixes used for executables.
|
||||
(setq exec-suffixes
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue