Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/serialhex/nano-highlight.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorserialhex <serialhex@gmail.com>2018-10-31 02:27:24 +0300
committerGitHub <noreply@github.com>2018-10-31 02:27:24 +0300
commitdda863bd5611eddd2e04f8750cf47aa6a11cf168 (patch)
tree2ed986f988a11ebb9a968260b0ac3936485270f2
parent4b0a1a80ffb4173f49f8e57833794538ff2a7d91 (diff)
parentb39cf2c346b7277f4651381e8b7446be161fb1cb (diff)
Merge pull request #46 from remyoudemans/add-es6-from-keyword
added 'from' keyword
-rw-r--r--js.nanorc10
1 files changed, 5 insertions, 5 deletions
diff --git a/js.nanorc b/js.nanorc
index a5f92d7..a60f381 100644
--- a/js.nanorc
+++ b/js.nanorc
@@ -14,11 +14,11 @@ color yellow "\<[-+]?([0-9]+[EePp][+-]?[0-9]+)[fFlL]?"
color green "\<(abstract|await|boolean|break|byte|case|catch|char)\>"
color green "\<(class|const|continue|debugger|default|delete|double)\>"
color green "\<(do|else|enum|export|extends|finally|final|float|for)\>"
-color green "\<(function|goto|if|implements|import|instanceof|interface)\>"
-color green "\<(int|in|let|long|native|new|package|private|protected)\>"
-color green "\<(public|return|short|static|super|switch|synchronized)\>"
-color green "\<(this|throws|throw|transient|try|typeof|var|void)\>"
-color green "\<(volatile|while|with|yield)\>"
+color green "\<(from|function|goto|if|implements|import|instanceof)\>"
+color green "\<(interface|int|in|let|long|native|new|package|private)\>"
+color green "\<(protected|public|return|short|static|super|switch)\>"
+color green "\<(synchronized|this|throws|throw|transient|try|typeof)\>"
+color green "\<(var|void|volatile|while|with|yield)\>"
## Type specifiers
color red "\<(Array|Boolean|Date|Enumerator|Error|Function|Math)\>"