Function: vhdl-template-insert-construct
vhdl-template-insert-construct is an interactive and byte-compiled
function defined in vhdl-mode.el.gz.
Signature
(vhdl-template-insert-construct NAME)
Documentation
Insert the built-in construct template with NAME.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Template insertion from completion list
(defun vhdl-template-insert-construct (name)
"Insert the built-in construct template with NAME."
(interactive
(list (let ((completion-ignore-case t))
(completing-read "Construct name: "
vhdl-template-construct-alist nil t))))
(vhdl-template-insert-fun
(cadr (assoc name vhdl-template-construct-alist))))