Variable: verilog-minimum-comment-distance

verilog-minimum-comment-distance is a customizable variable defined in verilog-mode.el.gz.

Value

10

Documentation

Minimum distance (in lines) between begin and end required before a comment.

Setting this variable to zero results in every end acquiring a comment; the default avoids too many redundant comments in tight quarters.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/verilog-mode.el.gz
(defcustom verilog-minimum-comment-distance 10
  "Minimum distance (in lines) between begin and end required before a comment.
Setting this variable to zero results in every end acquiring a comment; the
default avoids too many redundant comments in tight quarters."
  :group 'verilog-mode-indent
  :type 'integer)