Variable: vhdl-beautify-options

vhdl-beautify-options is a customizable variable defined in vhdl-mode.el.gz.

Value

(t t t t t)

Documentation

List of options for beautifying code.

Allows you to disable individual features of code beautification.

This variable was added, or its default value changed, in Emacs 24.4.

Probably introduced at or before Emacs version 24.4.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defcustom vhdl-beautify-options '(t t t t t)
  "List of options for beautifying code.
Allows you to disable individual features of code beautification."
  :type '(list (boolean :tag "Whitespace cleanup       ")
	       (boolean :tag "Single statement per line")
	       (boolean :tag "Indentation              ")
	       (boolean :tag "Alignment                ")
	       (boolean :tag "Case fixing              "))
  :group 'vhdl-beautify
  :version "24.4")