Function: vhdl-template-attribute-decl

vhdl-template-attribute-decl is an interactive and byte-compiled function defined in vhdl-mode.el.gz.

Signature

(vhdl-template-attribute-decl)

Documentation

Insert an attribute declaration.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defun vhdl-template-attribute-decl ()
  "Insert an attribute declaration."
  (interactive)
  (let ((start (point)))
    (vhdl-insert-keyword "ATTRIBUTE ")
    (when (vhdl-template-field "name" " : " t start (point))
      (vhdl-template-field "type" ";")
      (vhdl-comment-insert-inline))))