Variable: vhdl-align-group-separate

vhdl-align-group-separate is a customizable variable defined in vhdl-mode.el.gz.

Value

"^\\s-*$"

Documentation

Regexp for matching a line that separates groups of lines for alignment.

Examples:
  "^\\s-*$": matches an empty line
  "^\\s-*\\(--.*\\)?$": matches an empty line or a comment-only line

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defcustom vhdl-align-group-separate "^\\s-*$"
  "Regexp for matching a line that separates groups of lines for alignment.
Examples:
  \"^\\s-*$\":          matches an empty line
  \"^\\s-*\\(--.*\\)?$\": matches an empty line or a comment-only line"
  :type 'regexp
  :group 'vhdl-beautify)