Variable: three-step-help

three-step-help is a customizable variable defined in help-macro.el.gz.

Value

nil

Documentation

Non-nil means give more info about Help command in three steps.

The three steps are simple prompt, prompt with all options, and window listing and describing the options. A value of nil means skip the middle step, so that <f1> (help-command) <f1> (help-command) gives the window that lists the options.

View in manual

Source Code

;; Defined in /usr/src/emacs/lisp/help-macro.el.gz
;; This needs to be autoloaded because it is used in the
;; make-help-screen macro.  Using (bound-and-true-p three-step-help)
;; is not an acceptable alternative, because nothing loads help-macro
;; in a normal session, so any user customization would never be applied.
;;;###autoload
(defcustom three-step-help nil
  "Non-nil means give more info about Help command in three steps.
The three steps are simple prompt, prompt with all options, and
window listing and describing the options.
A value of nil means skip the middle step, so that \\[help-command] \\[help-command]
gives the window that lists the options."
  :type 'boolean
  :group 'help)