Function: align-entire

align-entire is an autoloaded, interactive and byte-compiled function defined in align.el.gz.

Signature

(align-entire BEG END &optional RULES EXCLUDE-RULES)

Documentation

Align the selected region as if it were one alignment section.

BEG and END mark the extent of the region. If RULES or EXCLUDE-RULES is set to a list of rules (see align-rules-list), it can be used to override the default alignment rules that would have been used to align that section.

View in manual

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/align.el.gz
;;;###autoload
(defun align-entire (beg end &optional rules exclude-rules)
  "Align the selected region as if it were one alignment section.
BEG and END mark the extent of the region.  If RULES or EXCLUDE-RULES
is set to a list of rules (see `align-rules-list'), it can be used to
override the default alignment rules that would have been used to
align that section."
  (interactive "r")
  (align beg end 'entire rules exclude-rules))