Variable: erc-keep-place-indicator-style

erc-keep-place-indicator-style is a customizable variable defined in erc-goodies.el.gz.

Value

t

Documentation

Flavor of visual indicator applied to kept place.

For use with the keep-place-indicator module. A value of arrow displays an arrow in the left fringe or margin. When it's face, ERC adds the face erc-keep-place-indicator-line to the appropriate line. A value of t does both.

This variable was added, or its default value changed, in ERC version
5.6.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc-goodies.el.gz
(defcustom erc-keep-place-indicator-style t
  "Flavor of visual indicator applied to kept place.
For use with the `keep-place-indicator' module.  A value of `arrow'
displays an arrow in the left fringe or margin.  When it's
`face', ERC adds the face `erc-keep-place-indicator-line' to the
appropriate line.  A value of t does both."
  :group 'erc
  :package-version '(ERC . "5.6")
  :type '(choice (const :tag "Use arrow" arrow)
                 (const :tag "Use face" face)
                 (const :tag "Use both arrow and face" t)))