(dired-omit-files): Add ".#foo" lock files to omissions.
This commit is contained in:
parent
82b6a81f61
commit
99358b9788
1 changed files with 3 additions and 3 deletions
|
@ -185,12 +185,12 @@ plus those ending with extensions in `dired-omit-extensions'."
|
|||
:group 'dired-x)
|
||||
(make-variable-buffer-local 'dired-omit-files-p)
|
||||
|
||||
(defcustom dired-omit-files "^#\\|^\\.$\\|^\\.\\.$"
|
||||
(defcustom dired-omit-files "^\\.?#\\|^\\.$\\|^\\.\\.$"
|
||||
"*Filenames matching this regexp will not be displayed.
|
||||
This only has effect when `dired-omit-files-p' is t. See interactive function
|
||||
`dired-omit-toggle' \(\\[dired-omit-toggle]\) and variable
|
||||
`dired-omit-extensions'. The default is to omit `.', `..', and auto-save
|
||||
files."
|
||||
`dired-omit-extensions'. The default is to omit `.', `..', auto-save
|
||||
files and lock files."
|
||||
:type 'regexp
|
||||
:group 'dired-x)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue