emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/nginx-mode 0600403 03/34: syntax highlighting improvements


From: ELPA Syncer
Subject: [nongnu] elpa/nginx-mode 0600403 03/34: syntax highlighting improvements, of a sort.
Date: Sun, 29 Aug 2021 11:24:11 -0400 (EDT)

branch: elpa/nginx-mode
commit 0600403fe09955d230f320c0e28a8a2b5dbb6225
Author: Andrew J Cosgriff <andrew@cosgriff.name>
Commit: Andrew J Cosgriff <andrew@cosgriff.name>

    syntax highlighting improvements, of a sort.
---
 nginx-mode.el | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

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)))
 
 
 ;;;;##########################################################################



reply via email to

[Prev in Thread] Current Thread [Next in Thread]