Variable: vhdl-highlight-keywords

vhdl-highlight-keywords is a customizable variable defined in vhdl-mode.el.gz.

Value

t

Documentation

Non-nil means highlight VHDL keywords and other standardized words.

The following faces are used:
  font-lock-keyword-face : keywords
  font-lock-type-face : standardized types
  vhdl-font-lock-attribute-face: standardized attributes
  vhdl-font-lock-enumvalue-face: standardized enumeration values
  vhdl-font-lock-function-face : standardized function and package names

NOTE: Activate the new setting in a VHDL buffer by re-fontifying it (menu
      entry "Fontify Buffer").

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defcustom vhdl-highlight-keywords t
  "Non-nil means highlight VHDL keywords and other standardized words.
The following faces are used:
  `font-lock-keyword-face'       : keywords
  `font-lock-type-face'          : standardized types
  `vhdl-font-lock-attribute-face': standardized attributes
  `vhdl-font-lock-enumvalue-face': standardized enumeration values
  `vhdl-font-lock-function-face' : standardized function and package names

NOTE: Activate the new setting in a VHDL buffer by re-fontifying it (menu
      entry \"Fontify Buffer\")."
  :type 'boolean
  :set (lambda (variable value)
	 (vhdl-custom-set variable value #'vhdl-font-lock-init))
  :group 'vhdl-highlight)