Variable: erc-unhide-query-prompt

erc-unhide-query-prompt is a customizable variable defined in erc.el.gz.

Value

nil

Documentation

When non-nil, always reveal query prompts upon reconnecting.

Otherwise, prompts in a connection's query buffers remain hidden until the user types in the input area or a new message arrives from the target.

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

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defcustom erc-unhide-query-prompt nil
  "When non-nil, always reveal query prompts upon reconnecting.
Otherwise, prompts in a connection's query buffers remain hidden
until the user types in the input area or a new message arrives
from the target."
  :package-version '(ERC . "5.5")
  :group 'erc-display
  ;; Extensions may one day offer a way to discover whether a target
  ;; is online.  When that happens, this can be expanded accordingly.
  :type 'boolean)