Variable: verilog-auto-arg-format

verilog-auto-arg-format is a customizable variable defined in verilog-mode.el.gz.

Value

packed

Documentation

Formatting to use for AUTOARG signal names.

If packed, then as many inputs and outputs that fit within fill-column will be put onto one line.

If single, then a single input or output will be put onto each line.

This variable was added, or its default value changed, in Emacs 25.1.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/verilog-mode.el.gz
(defcustom verilog-auto-arg-format 'packed
  "Formatting to use for AUTOARG signal names.
If `packed', then as many inputs and outputs that fit within
`fill-column' will be put onto one line.

If `single', then a single input or output will be put onto each
line."
  :version "25.1"
  :type '(radio (const :tag "Line up Assignments and Declarations" packed)
		(const :tag "Line up Assignment statements" single))
  :group 'verilog-mode-auto)