Variable: verilog-case-keywords

verilog-case-keywords is a variable defined in verilog-mode.el.gz.

Value

("begin" "fork" "join" "join_any" "join_none" "case" "end" "endcase" "if" "else" "for" "repeat")

Documentation

Keywords to complete when at first word of a line in case scope.

(begin, if, then, else, for, fork...)
The procedures and variables defined within the Verilog program will be completed at runtime and should not be added to this list.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/verilog-mode.el.gz
(defvar verilog-case-keywords
  '("begin" "fork" "join" "join_any" "join_none" "case" "end" "endcase" "if" "else" "for" "repeat")
  "Keywords to complete when at first word of a line in case scope.
\(begin, if, then, else, for, fork...)
The procedures and variables defined within the Verilog program
will be completed at runtime and should not be added to this list.")