Variable: hs-indicator-maximum-buffer-size
hs-indicator-maximum-buffer-size is a customizable variable defined in
hideshow.el.gz.
Value
2000000
Documentation
Max buffer size in bytes where the indicators should be enabled.
If current buffer is larger than this variable value, the indicators will be disabled.
If set to nil, the indicators will be activated regardless of the buffer size.
This variable was added, or its default value changed, in Emacs 31.1.
Probably introduced at or before Emacs version 31.1.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/hideshow.el.gz
(defcustom hs-indicator-maximum-buffer-size 2000000 ;2mb
"Max buffer size in bytes where the indicators should be enabled.
If current buffer is larger than this variable value, the indicators
will be disabled.
If set to nil, the indicators will be activated regardless of the buffer
size."
:type '(choice natnum (const :tag "No limit" nil))
:version "31.1")