Variable: dired-omit-size-limit

dired-omit-size-limit is a customizable variable defined in dired-x.el.gz.

Value

100000

Documentation

Maximum size for the "omitting" feature.

If nil, there is no maximum size.

This variable was added, or its default value changed, in Emacs 29.1.

Source Code

;; Defined in /usr/src/emacs/lisp/dired-x.el.gz
(defcustom dired-omit-size-limit 100000
  "Maximum size for the \"omitting\" feature.
If nil, there is no maximum size."
  :type '(choice (const :tag "no maximum" nil) integer)
  :group 'dired-x
  :version "29.1")