Variable: vhdl-template-directive-alist

vhdl-template-directive-alist is a variable defined in vhdl-mode.el.gz.

Value

(("translate_on" vhdl-template-directive-translate-on)
 ("translate_off" vhdl-template-directive-translate-off)
 ("synthesis_on" vhdl-template-directive-synthesis-on)
 ("synthesis_off" vhdl-template-directive-synthesis-off))

Documentation

List of built-in directive templates.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defvar vhdl-template-directive-alist
  '(
    ("translate_on"	vhdl-template-directive-translate-on)
    ("translate_off"	vhdl-template-directive-translate-off)
    ("synthesis_on"	vhdl-template-directive-synthesis-on)
    ("synthesis_off"	vhdl-template-directive-synthesis-off)
    )
  "List of built-in directive templates.")