Variable: erc-fill-wrap-visual-keys

erc-fill-wrap-visual-keys is a customizable variable defined in erc-fill.el.gz.

Value

non-input

Documentation

Whether to retain keys defined by visual-line-mode(var)/visual-line-mode(fun).

A value of t tells ERC to use movement commands defined by visual-line-mode(var)/visual-line-mode(fun) everywhere in an ERC buffer along with visual editing commands in the input area. A value of nil means to never do so. A value of non-input tells ERC to act like the value is nil in the input area and t elsewhere. See related option erc-fill-wrap-force-screen-line-movement for behavior involving next-line and previous-line.

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

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc-fill.el.gz
(defcustom erc-fill-wrap-visual-keys 'non-input
  "Whether to retain keys defined by `visual-line-mode'.
A value of t tells ERC to use movement commands defined by
`visual-line-mode' everywhere in an ERC buffer along with visual
editing commands in the input area.  A value of nil means to
never do so.  A value of `non-input' tells ERC to act like the
value is nil in the input area and t elsewhere.  See related
option `erc-fill-wrap-force-screen-line-movement' for behavior
involving `next-line' and `previous-line'."
  :package-version '(ERC . "5.6")
  :type '(choice (const nil) (const t) (const non-input)))