Function: paragraph-indent-text-mode

paragraph-indent-text-mode is an interactive and byte-compiled function defined in text-mode.el.gz.

Signature

(paragraph-indent-text-mode)

Documentation

Major mode for editing text, with leading spaces starting a paragraph.

In this mode, you do not need blank lines between paragraphs when the first line of the following paragraph starts with whitespace. paragraph-indent-minor-mode(var)/paragraph-indent-minor-mode(fun) provides a similar facility as a minor mode. Special commands:
C-M-i ispell-complete-word
Turning on Paragraph-Indent Text mode runs the normal hooks text-mode-hook and paragraph-indent-text-mode-hook.

Probably introduced at or before Emacs version 21.1.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/text-mode.el.gz
(define-derived-mode paragraph-indent-text-mode text-mode "Parindent"
  "Major mode for editing text, with leading spaces starting a paragraph.
In this mode, you do not need blank lines between paragraphs
when the first line of the following paragraph starts with whitespace.
`paragraph-indent-minor-mode' provides a similar facility as a minor mode.
Special commands:
\\{text-mode-map}
Turning on Paragraph-Indent Text mode runs the normal hooks
`text-mode-hook' and `paragraph-indent-text-mode-hook'."
  :abbrev-table nil :syntax-table nil
  (paragraph-indent-minor-mode))