Variable: dired-omit-size-limit
dired-omit-size-limit is a customizable variable defined in
dired-x.el.gz.
Value
300000
Documentation
Maximum buffer size for dired-omit-mode(var)/dired-omit-mode(fun).
Omitting will be disabled if the directory listing exceeds this size in
bytes. This variable is ignored when dired-omit-mode(var)/dired-omit-mode(fun) is called
interactively.
If nil, there is no maximum size.
This variable was added, or its default value changed, in Emacs 30.1.
Probably introduced at or before Emacs version 30.1.
Source Code
;; Defined in /usr/src/emacs/lisp/dired-x.el.gz
(defcustom dired-omit-size-limit 300000
"Maximum buffer size for `dired-omit-mode'.
Omitting will be disabled if the directory listing exceeds this size in
bytes. This variable is ignored when `dired-omit-mode' is called
interactively.
If nil, there is no maximum size."
:type '(choice (const :tag "no maximum" nil) integer)
:group 'dired-x
:version "30.1")