Variable: vhdl-include-group-comments

vhdl-include-group-comments is a customizable variable defined in vhdl-mode.el.gz.

Value

never

Documentation

Specifies whether to include group comments and spacings.

The comments and empty lines between groups of ports are pasted:
  Never : never
  Declarations: in entity/component/constant/signal declarations only
  Always : also in generic/port maps

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defcustom vhdl-include-group-comments 'never
  "Specifies whether to include group comments and spacings.
The comments and empty lines between groups of ports are pasted:
  Never       : never
  Declarations: in entity/component/constant/signal declarations only
  Always      : also in generic/port maps"
  :type '(choice (const :tag "Never" never)
		 (const :tag "Declarations" decl)
		 (const :tag "Always" always))
  :group 'vhdl-port)