Variable: verilog-highlight-max-lookahead

verilog-highlight-max-lookahead is a customizable variable defined in verilog-mode.el.gz.

Value

10000

Documentation

Maximum size of declaration statement that undergoes highlighting.

Highlighting is performed only on the first verilog-highlight-max-lookahead characters in a declaration statement. Setting this variable to zero would remove this limit. Note that removing the limit can greatly slow down highlighting for very large files.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/verilog-mode.el.gz
(defcustom verilog-highlight-max-lookahead 10000
  "Maximum size of declaration statement that undergoes highlighting.
Highlighting is performed only on the first `verilog-highlight-max-lookahead'
characters in a declaration statement.
Setting this variable to zero would remove this limit.  Note that removing
the limit can greatly slow down highlighting for very large files."
  :group 'verilog-mode-indent
  :type 'integer)