Function: flyspell-delay-command

flyspell-delay-command is an interactive and byte-compiled function defined in flyspell.el.gz.

Signature

(flyspell-delay-command COMMAND)

Documentation

Set COMMAND to be delayed, for Flyspell.

When flyspell post-command-hook is invoked because a delayed command has been used, the current word is not immediately checked. It will be checked only after flyspell-delay seconds.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/flyspell.el.gz
;;*---------------------------------------------------------------------*/
;;*    flyspell-delay-command ...                                       */
;;*---------------------------------------------------------------------*/
(defun flyspell-delay-command (command)
  "Set COMMAND to be delayed, for Flyspell.
When flyspell `post-command-hook' is invoked because a delayed command
has been used, the current word is not immediately checked.
It will be checked only after `flyspell-delay' seconds."
  (interactive "SDelay Flyspell after Command: ")
  (put command 'flyspell-delayed t))