Function: verilog-highlight-buffer
verilog-highlight-buffer is an interactive and byte-compiled function
defined in verilog-mode.el.gz.
Signature
(verilog-highlight-buffer)
Documentation
Colorize included files and modules across the whole buffer.
Key Bindings
Aliases
verilog-colorize-include-files-buffer
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/verilog-mode.el.gz
(defun verilog-highlight-buffer ()
"Colorize included files and modules across the whole buffer."
;; Invoked via verilog-mode calling font-lock then `font-lock-mode-hook'
(interactive)
;; delete and remake overlays
(verilog-highlight-region (point-min) (point-max) nil))