GNU bug report logs -
#46882
26.3; Let `dired-omit-mode' match lines, as well as file names
Previous Next
Reported by: Drew Adams <drew.adams <at> oracle.com>
Date: Wed, 3 Mar 2021 00:40:01 UTC
Severity: wishlist
Found in version 26.3
Fixed in version 29.1
Done: Lars Ingebrigtsen <larsi <at> gnus.org>
Bug is archived. No further changes may be made.
Full log
Message #8 received at 46882 <at> debbugs.gnu.org (full text, mbox):
I changed the option so its value can also be a var
whose value is such a regexp.
(defcustom dired-omit-lines-regexp nil
"Regexp matching lines to be omitted by `dired-omit-mode'.
The value can also be a variable whose value is such a regexp.
The value can also be nil, which means do no line matching.
See command `dired-omit-mode' (\\[dired-omit-mode]).
Some predefined regexp variables for Dired, which you can use as the
option value:
* `dired-re-inode-size'
* `dired-re-mark'
* `dired-re-maybe-mark'
* `dired-re-dir'
* `dired-re-sym'
* `dired-re-exe'
* `dired-re-perms'
* `dired-re-dot'
* `dired-re-no-dot'"
:type `(choice
(const :tag "Do not match lines to omit" nil)
(regexp
:tag "Regexp to match lines to omit (default omits executables)"
:value ,dired-re-exe)
(restricted-sexp
:tag "Variable with regexp value (default: `dired-re-exe')"
:match-alternatives
((lambda (obj) (and (symbolp obj) (boundp obj))))
:value dired-re-exe))
:group 'dired-x)
This bug report was last modified 3 years and 48 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.