Variable: vhdl-directive-keywords

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

Value

("psl" "pragma" "synopsys")

Documentation

List of compiler directive keywords recognized for highlighting.

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-directive-keywords '("psl" "pragma" "synopsys")
  "List of compiler directive keywords recognized for highlighting.

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