Variable: verilog-coverage

verilog-coverage is a customizable variable defined in verilog-mode.el.gz.

Value

"echo 'No verilog-coverage set, see \"M-x describe-variable verilog-coverage\"'"

Documentation

Program and arguments to use to annotate for coverage Verilog source.

Depending on the verilog-set-compile-command, this may be invoked when you type M-x compile (compile). When the compile completes, C-x ` (next-error) will take you to the next lint error.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/verilog-mode.el.gz
;; We don't mark it safe, as it's used as a shell command

(defcustom verilog-coverage
  "echo 'No verilog-coverage set, see \"M-x describe-variable verilog-coverage\"'"
  "Program and arguments to use to annotate for coverage Verilog source.
Depending on the `verilog-set-compile-command', this may be invoked when
you type \\[compile].  When the compile completes, \\[next-error] will take
you to the next lint error."
  :type 'string
  :group 'verilog-mode-actions)