Function: cperl-toggle-autohelp

cperl-toggle-autohelp is an interactive and byte-compiled function defined in cperl-mode.el.gz.

Signature

(cperl-toggle-autohelp)

Documentation

Toggle the state of Auto-Help on Perl constructs (put in the message area).

Delay of auto-help controlled by cperl-lazy-help-time.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/cperl-mode.el.gz
(defun cperl-toggle-autohelp ()
  ;; FIXME: Turn me into a minor mode.  Fix menu entries for "Auto-help on" as
  ;; well.
  "Toggle the state of Auto-Help on Perl constructs (put in the message area).
Delay of auto-help controlled by `cperl-lazy-help-time'."
  (interactive)
  (if cperl-lazy-installed
      (cperl-lazy-unstall)
    (cperl-lazy-install))
  (message "Perl help messages will %sbe automatically shown now."
	   (if cperl-lazy-installed "" "not ")))