From 1b5b52d2e43eb56c3ff5c4c123733a3d4a475c28 Mon Sep 17 00:00:00 2001 From: Benno Schulenberg Date: Mon, 25 Dec 2017 15:27:08 +0100 Subject: [PATCH] syntax: javascript: color strings differently from major keywords Also, remove the coloring of special single-quoted strings as they get recolored by the subsequent general string-coloring command. And remove the coloring of all-uppercase words, as other editors do not color those either. --- syntax/javascript.nanorc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/syntax/javascript.nanorc b/syntax/javascript.nanorc index 15d63f12..7b4dcdae 100644 --- a/syntax/javascript.nanorc +++ b/syntax/javascript.nanorc @@ -3,15 +3,13 @@ syntax "javascript" "\.js$" comment "//" -color brightred "\<[A-Z_][0-9A-Z_]+\>" color green "\<(async|class|const|extends|function|let|this|typeof|var|void)\>" color brightyellow "\<(for|if|while|with|do|else|case|default|switch)\>" color brightyellow "\<(await|export|import|try|throw|catch|new|delete)\>" color magenta "\<(continue|break|return|yield)\>" -color brightmagenta "'([^'\]|(\\["'abfnrtv\\]))'" "'\\(([0-3]?[0-7]{1,2}))'" "'\\x[0-9A-Fa-f]{1,2}'" # Strings. -color brightyellow "<[^= ]*>" ""(\\.|[^"])*"" "'(\\.|[^'])*'" "`(\\.|[^`])*`" +color brightmagenta "<[^= ]*>" ""(\\.|[^"])*"" "'(\\.|[^'])*'" "`(\\.|[^`])*`" # Comments. color brightblue "(^|[[:space:]])//.*" color brightblue start="/\*" end="\*/"