Function: vhdl-speedbar-configuration
vhdl-speedbar-configuration is an interactive and byte-compiled
function defined in vhdl-mode.el.gz.
Signature
(vhdl-speedbar-configuration)
Documentation
Generate configuration for the architecture under the cursor.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defun vhdl-speedbar-configuration ()
"Generate configuration for the architecture under the cursor."
(interactive)
(if (not (vhdl-speedbar-check-unit 'architecture))
(error "ERROR: No architecture under cursor")
(let ((arch-name (vhdl-speedbar-line-text))
(ent-name (vhdl-speedbar-higher-text)))
(if (fboundp 'speedbar-select-attached-frame)
(speedbar-select-attached-frame)
(select-frame speedbar-attached-frame))
(vhdl-compose-configuration ent-name arch-name))))