Function: vhdl-template-search-prompt
vhdl-template-search-prompt is an interactive and byte-compiled
function defined in vhdl-mode.el.gz.
Signature
(vhdl-template-search-prompt)
Documentation
Search for left out template prompts and query again.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defun vhdl-template-search-prompt ()
"Search for left out template prompts and query again."
(interactive)
(vhdl-prepare-search-2
(when (or (re-search-forward
(concat "<\\(" vhdl-template-prompt-syntax "\\)>") nil t)
(re-search-backward
(concat "<\\(" vhdl-template-prompt-syntax "\\)>") nil t))
(let ((string (match-string 1)))
(replace-match "")
(vhdl-template-field string)))))