Variable: verilog-auto-inst-template-required

verilog-auto-inst-template-required is a customizable variable defined in verilog-mode.el.gz.

Value

nil

Documentation

If non-nil, when creating a port with AUTOINST, require a template.

Any port which does not have a template will be omitted from the instantiation.

If nil, if a port is not templated it will be inserted to connect to a net with the same name as the port.

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

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/verilog-mode.el.gz
(defcustom verilog-auto-inst-template-required nil
  "If non-nil, when creating a port with AUTOINST, require a template.
Any port which does not have a template will be omitted from the
instantiation.

If nil, if a port is not templated it will be inserted to connect
to a net with the same name as the port."
  :version "28.0"
  :group 'verilog-mode-auto
  :type 'boolean)