From 0600403fe09955d230f320c0e28a8a2b5dbb6225 Mon Sep 17 00:00:00 2001 From: Andrew J Cosgriff Date: Thu, 14 Oct 2010 21:32:04 +1100 Subject: syntax highlighting improvements, of a sort. --- nginx-mode.el | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'nginx-mode.el') diff --git a/nginx-mode.el b/nginx-mode.el index 4fed8b0..2caf835 100644 --- a/nginx-mode.el +++ b/nginx-mode.el @@ -46,7 +46,14 @@ (defvar nginx-font-lock-keywords (list '("#.*" . font-lock-comment-face) - '("^\\([ ]+\\)?\\([A-Za-z09_]+\\)" 2 font-lock-keyword-face t))) + '("^\\([ \t]+\\)?\\([A-Za-z09_]+\\)" 2 font-lock-keyword-face t) + '(";$" . font-lock-pseudo-keyword-face) + '("\\(\{\\|\}\\|\(\\|\)\\)" . font-lock-pseudo-keyword-face) + '("^\\([ \t]+\\)?rewrite[ \t]+.+[ \t]+\\(permanent\\|redirect\\|break\\|last\\);$" 2 font-lock-operator-face) + '("\\(\$[0-9]+\\)[^0-9]" 1 font-lock-constant-face) + '("\$[A-Za-z0-9_\-]+" . font-lock-variable-name-face) + '("[ \t]+\\(on\\|off\\);$" 1 font-lock-constant-face) + '("[A-Za-z0-9_\-]+\\([ \t]+[^ \t\n]+\\)?[ \t]+\\([^ \t\n]+\\)[ \t]+{" 2 font-lock-operator-face))) ;;;;########################################################################## -- cgit v1.2.3-54-g00ecf