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