Function: vhdl-template-disconnect
vhdl-template-disconnect is an interactive and byte-compiled function
defined in vhdl-mode.el.gz.
Signature
(vhdl-template-disconnect)
Documentation
Insert a disconnect statement.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defun vhdl-template-disconnect ()
"Insert a disconnect statement."
(interactive)
(let ((start (point)))
(vhdl-insert-keyword "DISCONNECT ")
(when (vhdl-template-field "signal names | OTHERS | ALL"
" : " t start (point))
(vhdl-template-field "type")
(vhdl-insert-keyword " AFTER ")
(vhdl-template-field "time expression" ";"))))