Omitting Variables
Omitting Files in Dired
Omitting Technical
(setq dired-omit-files (concat dired-omit-files "\\|^RCS$\\|,v$"))
in the dired-load-hook
(See Installation). This assumes
dired-omit-localp
has its default value of 'no-dir
to make the
^
-anchored matches work. As a slower alternative, with
dired-omit-localp
set to nil
, you can use /
instead of
^
in the regexp.
INDEX
' and the `-t.tex
' files, then put
(setq dired-omit-files (concat dired-omit-files "\\|^INDEX$\\|-t\\.tex$"))
in the dired-load-hook
(See Installation).
dot
' files (files starting with a `.
'),
then put
(setq dired-omit-files (concat dired-omit-files "\\|^\\..+$"))
in the dired-load-hook
(See Installation).