Function: vhdl-template-component-conf

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

Signature

(vhdl-template-component-conf)

Documentation

Insert a component configuration (uses vhdl-template-configuration-spec since these are almost equivalent).

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defun vhdl-template-component-conf ()
  "Insert a component configuration (uses `vhdl-template-configuration-spec'
since these are almost equivalent)."
  (interactive)
  (let ((margin (current-indentation))
	(result (vhdl-template-configuration-spec t)))
    (when result
      (insert "\n")
      (indent-to margin)
      (vhdl-insert-keyword "END FOR;")
      (when (eq result 'no-use)
	(end-of-line -0)))))