I would like to be able to customize the first face used in the below two font lock rules. I prefer to avoid bold faces in my theme. Maybe font-lock-variable-name-face would be appropriate for these?
;; something=string until ',' or '/' or EOL
;; E.g. CN=apa,OU=Räv
'("\\(\\<\\w+=\\)\\(.*?\\)\\(?:[,/]\\|$\\)"
(1 'bold)
(2 'font-lock-string-face))
;; something = string until ',' or EOL
;; E.g. CN = ACCVRAIZ1, OU = PKIACCV, O = ACCV, C = ES
'("\\(\\<\\w+\\) = \\(.*?\\)\\(?:[,/]\\|$\\)"
(1 'bold)
(2 'font-lock-string-face))
I would like to be able to customize the first face used in the below two font lock rules. I prefer to avoid bold faces in my theme. Maybe
font-lock-variable-name-face
would be appropriate for these?