Function: verilog-expand-vector

verilog-expand-vector is an interactive and byte-compiled function defined in verilog-mode.el.gz.

Signature

(verilog-expand-vector)

Documentation

Take a signal vector on the current line and expand it to multiple lines.

Useful for creating tri's and other expanded fields.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/verilog-mode.el.gz
(defun verilog-expand-vector ()
  "Take a signal vector on the current line and expand it to multiple lines.
Useful for creating tri's and other expanded fields."
  (interactive)
  (verilog-expand-vector-internal "[" "]"))