Variable: vhdl-insert-empty-lines

vhdl-insert-empty-lines is a customizable variable defined in vhdl-mode.el.gz.

Value

unit

Documentation

Specifies whether to insert empty lines in some templates.

This improves readability of code. Empty lines are inserted in:
  None : no constructs
  Design units only: entities, architectures, configurations, packages only
  All constructs : also all constructs with BEGIN...END parts

Replaces option vhdl-additional-empty-lines.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defcustom vhdl-insert-empty-lines 'unit
  "Specifies whether to insert empty lines in some templates.
This improves readability of code.  Empty lines are inserted in:
  None             : no constructs
  Design units only: entities, architectures, configurations, packages only
  All constructs   : also all constructs with BEGIN...END parts

Replaces option `vhdl-additional-empty-lines'."
  :type '(choice (const :tag "None" none)
		 (const :tag "Design units only" unit)
		 (const :tag "All constructs" all))
  :group 'vhdl-template
  :group 'vhdl-port
  :group 'vhdl-compose)