Function: align-current

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

Signature

(align-current &optional RULES EXCLUDE-RULES)

Documentation

Call align on the current alignment section.

This function assumes you want to align only the current section, and so saves you from having to specify 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-current (&optional rules exclude-rules)
  "Call `align' on the current alignment section.
This function assumes you want to align only the current section, and
so saves you from having to specify 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)
  (align nil nil nil rules exclude-rules))