Function: vhdl-template-with

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

Signature

(vhdl-template-with)

Documentation

Insert a with statement (i.e. selected signal assignment).

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defun vhdl-template-with ()
  "Insert a with statement (i.e. selected signal assignment)."
  (interactive)
  (vhdl-prepare-search-1
   (if (and (save-excursion (vhdl-re-search-backward "\\(\\<limit\\>\\|;\\)"))
	    (equal ";" (match-string 1)))
       (vhdl-template-selected-signal-asst)
     (vhdl-insert-keyword "WITH "))))