Function: vhdl-speedbar-place-component
vhdl-speedbar-place-component is an interactive and byte-compiled
function defined in vhdl-mode.el.gz.
Signature
(vhdl-speedbar-place-component)
Documentation
Place the entity/component under the cursor as component.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defun vhdl-speedbar-place-component ()
"Place the entity/component under the cursor as component."
(interactive)
(if (not (vhdl-speedbar-check-unit 'entity))
(error "ERROR: No entity/component under cursor")
(vhdl-speedbar-port-copy)
(if (fboundp 'speedbar-select-attached-frame)
(speedbar-select-attached-frame)
(select-frame speedbar-attached-frame))
(vhdl-compose-place-component)
(select-frame speedbar-frame)))