commit 1cd92458e9934e67fc37b4e972630bbd5ffbc0f3
parent 7bd68365ecc5750ddd5e581b6223de7c22984df5
Author: Benno Schulenberg <bensberg@telfort.nl>
Date: Wed, 27 Oct 2021 09:45:42 +0200
tweaks: swap two parts of specific regexes, for consistency with others
This order makes more sense to me: first the part that allows
almost everything, and then the special case.
Diffstat:
15 files changed, 17 insertions(+), 17 deletions(-)
diff --git a/syntax/asm.nanorc b/syntax/asm.nanorc
@@ -12,7 +12,7 @@ color brightred "^[[:blank:]]*[.0-9A-Za-z_]*:"
color brightcyan "^[[:blank:]]*#[[:blank:]]*(define|undef|include|ifn?def|endif|elif|else|if|warning|error)"
# Strings.
-color brightyellow "<[^= ]*>|"(\\.|[^"\])*""
+color brightyellow "<[^= ]*>|"([^"\]|\\.)*""
# Comments.
color brightblue "//.*"
diff --git a/syntax/awk.nanorc b/syntax/awk.nanorc
@@ -29,7 +29,7 @@ color magenta "\<(and|compl|lshift|or|rshift|xor)\>"
color magenta "\<(bindtextdomain|dcgettext|dcngettext)\>"
# Strings.
-color brightyellow ""(\\.|[^"\])*""
+color brightyellow ""([^"\]|\\.)*""
# Comments.
color brightblue "(^|[[:blank:]])#.*"
diff --git a/syntax/elisp.nanorc b/syntax/elisp.nanorc
@@ -28,6 +28,6 @@ color brightred "\<(t|nil)\>"
color blue ":(\w|[?-])+"
# Strings
color yellow start="^[[:blank:]]+"" end="[^\]""
-color yellow ""(\\.|[^"\])*""
+color yellow ""([^"\]|\\.)*""
# Comments
color cyan "(^|[[:blank:]]);.*"
diff --git a/syntax/extra/fortran.nanorc b/syntax/extra/fortran.nanorc
@@ -34,7 +34,7 @@ icolor yellow "\<(.or.|repeat|select case|then|where|while)\>"
icolor magenta "\<(continue|cycle|exit|go?to|result|return)\>"
# Strings.
-color yellow ""(\\.|[^"\])*""
+color yellow ""([^"\]|\\.)*""
# Comments.
color blue "!.*"
diff --git a/syntax/extra/gentoo.nanorc b/syntax/extra/gentoo.nanorc
@@ -41,7 +41,7 @@ color blue "\<(awk|cat|cd|chmod|chown|cp|echo|env|find|e?grep|ln|make|mkdir|mv|p
## Comments (doesn't work that well):
color yellow "(^|[[:space:]])#.*"
## Strings (doesn't work that well):
-color brightyellow ""(\\.|[^"\])*"|'(\\.|[^'\])*'"
+color brightyellow ""([^"\]|\\.)*"|'([^'\]|\\.)*'"
## Trailing space is bad!
color ,green "[[:space:]]+$"
## Mixed whitespace is also bad.
diff --git a/syntax/go.nanorc b/syntax/go.nanorc
@@ -34,8 +34,8 @@ color red "\<[0-9]+i\>"
# Strings and characters; slightly fuzzy.
color red "\<(true|false|nil|iota|_)\>"
-color red ""(\\.|[^"\])*"|'(\\.|[^'\])+'"
-color red start=""(\\.|[^"\])*\\[[:blank:]]*$" end="^(\\.|[^"\])*""
+color red ""([^"\]|\\.)*"|'([^'\]|\\.)+'"
+color red start=""([^"\]|\\.)*\\[[:blank:]]*$" end="^([^"\]|\\.)*""
# Comments.
color brightblue "//.*"
diff --git a/syntax/guile.nanorc b/syntax/guile.nanorc
@@ -19,6 +19,6 @@ color brightred "(#t|#f)\>"
color blue "#?:(\w|[?-])+"
# Strings
color yellow start="^[[:blank:]]+"" end="[^\]""
-color yellow ""(\\.|[^"\])*""
+color yellow ""([^"\]|\\.)*""
# Comments
color cyan "(^|[[:blank:]]);.*"
diff --git a/syntax/html.nanorc b/syntax/html.nanorc
@@ -25,7 +25,7 @@ color red "\<(rows(pan)?|rules|scheme|scope|scrolling|selected|shape|size|span|s
color red "\<(tabindex|target|text|title|type|usemap|valign|value(type)?|vlink|vspace|width|xmlns|xml:space)="
# Strings:
-color green ""(\\.|[^"\])*""
+color green ""([^"\]|\\.)*""
# Comments:
color yellow start="<!--" end="-->"
diff --git a/syntax/javascript.nanorc b/syntax/javascript.nanorc
@@ -17,7 +17,7 @@ color cyan "\<([0-9]+|0x[0-9A-Fa-f]+)\>"
color cyan "\<(true|false|null|undefined)\>"
# Strings.
-color brightmagenta ""(\\.|[^"\])*"|'(\\.|[^'\])*'|`(\\.|[^`\])*`"
+color brightmagenta ""([^"\]|\\.)*"|'([^'\]|\\.)*'|`([^`\]|\\.)*`"
# Comments.
color brightblue "(^|[[:blank:]])//.*"
color brightblue start="/\*" end="\*/"
diff --git a/syntax/lua.nanorc b/syntax/lua.nanorc
@@ -54,7 +54,7 @@ color brightmagenta "\(|\)|\[|\]|\{|\}"
color brightcyan "^#!.*"
# Strings
-color red ""(\\.|[^"\])*"|'(\\.|[^'\])*'"
+color red ""([^"\]|\\.)*"|'([^'\]|\\.)*'"
# Simple comments and multiline comments
color green "--.*"
diff --git a/syntax/nftables.nanorc b/syntax/nftables.nanorc
@@ -26,7 +26,7 @@ color cyan "(^|[[:blank:]])#.*"
color ,green "[[:space:]]+$"
# Strings and others
-color yellow ""(\\.|[^"\])*"|'(\\.|[^'\])*'"
+color yellow ""([^"\]|\\.)*"|'([^'\]|\\.)*'"
color green "[][{}():;|`$<>!=&\]"
# Basic variable names
diff --git a/syntax/objc.nanorc b/syntax/objc.nanorc
@@ -25,8 +25,8 @@ color white "\[[^][:blank:]]*\]"
# Strings.
color brightblack "'([^'\]|(\\["'abfnrtv\]))'" "'\\(([0-3]?[0-7]{1,2}))'" "'\\x[0-9A-Fa-f]{1,2}'"
-color brightblack "<[^= ]*>|"(\\.|[^"\])*""
-color brightblue "@"(\\.|[^"\])*""
+color brightblack "<[^= ]*>|"([^"\]|\\.)*""
+color brightblue "@"([^"\]|\\.)*""
# Preprocessor commands.
color brightblue "^[[:blank:]]*#[[:blank:]]*(define|include|import|(un|ifn?)def|endif|el(if|se)|if|warning|error)"
diff --git a/syntax/php.nanorc b/syntax/php.nanorc
@@ -25,7 +25,7 @@ color brightcyan "\<(and|or|xor)\>"
color magenta "\<(break|continue|goto|return)\>"
# Strings.
-color brightyellow ""(\\.|[^"\])*"|'(\\.|[^'\])*'"
+color brightyellow ""([^"\]|\\.)*"|'([^'\]|\\.)*'"
# Comments.
color brightblue "(^|[[:blank:]]+)//.*"
diff --git a/syntax/sh.nanorc b/syntax/sh.nanorc
@@ -33,7 +33,7 @@ color brightred "\$\{[#!]?([-@*#?$!]|[0-9]+|[[:alpha:]_][[:alnum:]_]*)(\[([[:bla
color cyan "(^|[[:blank:]])#.*"
# Strings.
-color brightyellow ""(\\.|[^"\])*"|'(\\.|[^'\])*'"
+color brightyellow ""([^"\]|\\.)*"|'([^'\]|\\.)*'"
# Trailing whitespace.
color ,green "[[:space:]]+$"
diff --git a/syntax/tcl.nanorc b/syntax/tcl.nanorc
@@ -17,7 +17,7 @@ color green "\<(alarm|auto_load_pkg|bsearch|catclose|catgets|catopen|ccollate|cc
# Syntax:
color brightblue "\<proc[[:blank:]]|\{|\}"
color green "\(|\)|\;|`|\\|\$|<|>|!|=|&|\|"
-color brightyellow ""(\\.|[^"\])*"|'(\\.|[^'\])*'"
+color brightyellow ""([^"\]|\\.)*"|'([^'\]|\\.)*'"
color brightred "\$\{?[0-9A-Za-z_!@#$*?-]+\}?"
# Trailing whitespace: