Variable: hs-indicator-type
hs-indicator-type is a customizable variable defined in
hideshow.el.gz.
Value
fringe
Documentation
Indicate which indicator type to use for the block indicators.
The possible values can be:
- fringe, display the indicators in the fringe.
- margin, display the indicators in the margin.
- nil, display the indicators at end-of-line.
This only has effect if hs-show-indicators is non-nil.
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-type 'fringe
"Indicate which indicator type to use for the block indicators.
The possible values can be:
- `fringe', display the indicators in the fringe.
- `margin', display the indicators in the margin.
- nil, display the indicators at end-of-line.
This only has effect if `hs-show-indicators' is non-nil."
:type '(choice
(const :tag "Fringes" fringe)
(const :tag "Margins" margin)
(const :tag "Indicator at end-of-line" nil))
:version "31.1")