Variable: vhdl-highlight-case-sensitive
vhdl-highlight-case-sensitive is a customizable variable defined in
vhdl-mode.el.gz.
Value
nil
Documentation
Non-nil means consider case for highlighting.
Possible trade-off:
non-nil also upper-case VHDL words are highlighted, but case of words with
special syntax is not considered
nil only lower-case VHDL words are highlighted, but case of words with
special syntax is considered
Overrides local option font-lock-keywords-case-fold-search.
NOTE: Activate the new setting in a VHDL buffer by re-fontifying it (menu
entry "Fontify Buffer").
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defcustom vhdl-highlight-case-sensitive nil
"Non-nil means consider case for highlighting.
Possible trade-off:
non-nil also upper-case VHDL words are highlighted, but case of words with
special syntax is not considered
nil only lower-case VHDL words are highlighted, but case of words with
special syntax is considered
Overrides local option `font-lock-keywords-case-fold-search'.
NOTE: Activate the new setting in a VHDL buffer by re-fontifying it (menu
entry \"Fontify Buffer\")."
:type 'boolean
:group 'vhdl-highlight)