Variable: vhdl-highlight-special-words

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

Value

nil

Documentation

Non-nil means highlight words with special syntax.

The words with syntax and color specified in option vhdl-special-syntax-alist are highlighted accordingly. Can be used for visual support of naming conventions.

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-special-words nil
  "Non-nil means highlight words with special syntax.
The words with syntax and color specified in option `vhdl-special-syntax-alist'
are highlighted accordingly.
Can be used for visual support of naming conventions.

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)