From 723fffd7ee5d68ea4ded688baa78d5eca346aa58 Mon Sep 17 00:00:00 2001 From: Zach DeCook Date: Fri, 19 Mar 2021 12:28:07 -0400 Subject: [PATCH 1/3] * PHP: Fix highlighting of special values --- php.nanorc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/php.nanorc b/php.nanorc index 693695f..9be8942 100644 --- a/php.nanorc +++ b/php.nanorc @@ -5,7 +5,7 @@ comment "//" color white start="<\?(php|=)?" end="\?>" # Constructs color brightblue "(class|extends|goto) ([a-zA-Z0-9_]*)" -color brightblue "[^a-z0-9_-]{1}(var|class|function|echo|case|break|default|exit|switch|if|else|elseif|endif|foreach|endforeach|@|while|public|private|protected|return|true|false|null|TRUE|FALSE|NULL|const|static|extends|as|array|require|include|require_once|include_once|define|do|continue|declare|goto|print|in|namespace|use)[^a-z0-9_-]{1}" +color brightblue "[^a-z0-9_-]{1}(var|class|function|echo|case|break|default|exit|switch|if|else|elseif|endif|foreach|endforeach|@|while|public|private|protected|return|const|static|extends|as|array|require|include|require_once|include_once|define|do|continue|declare|goto|print|in|namespace|use)[^a-z0-9_-]{1}" color brightblue "[a-zA-Z0-9_]+:" # Variables color green "\$[a-zA-Z_0-9$]*|[=!<>]" @@ -14,7 +14,7 @@ color green "\->[a-zA-Z_0-9$]*|[=!<>]" color brightblue "([a-zA-Z0-9_-]*)\(" # Special values color brightmagenta "[^a-z0-9_-]{1}(true|false|null|TRUE|FALSE|NULL)$" -color brightmagenta "[^a-z0-9_-]{1}(true|false|null|TRUE|FALSE|NULL)[^a-z0-9_-]{1}" +color brightmagenta "[^a-z0-9_-]{1}(true|false|null|TRUE|FALSE|NULL)[^A-Za-z0-9_-]{1}" # Special Characters color yellow "[.,{}();]" color cyan "\[" From 6b9770b236dc81db3690f60419540b4a19e3d20b Mon Sep 17 00:00:00 2001 From: Zach DeCook Date: Fri, 19 Mar 2021 12:28:49 -0400 Subject: [PATCH 2/3] * XML: Enhance with different opening/closing tag colors --- xml.nanorc | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/xml.nanorc b/xml.nanorc index 809a048..6d4e8f0 100644 --- a/xml.nanorc +++ b/xml.nanorc @@ -7,9 +7,16 @@ magic "(XML|SGML) (sub)?document" comment "" color white "^.+$" +# Attributes color green start="<" end=">" -color cyan "<[^> ]+" -color cyan ">" +color brightgreen "=\"[^\"]*\"" +# Opening tags +color brightcyan "<[^/][^> ]*" +color brightcyan ">" +# Closing tags +color cyan " ]*>" +# Self-closing part +color cyan "/>" color yellow start="" color yellow start="" color red "&[^;]*;" From 065ce0a8d4bad59d68f3e7b326bf4d7390a3b0cb Mon Sep 17 00:00:00 2001 From: Zach DeCook Date: Fri, 19 Mar 2021 12:30:53 -0400 Subject: [PATCH 3/3] * Yaml: Fix highlighting of spaces --- yaml.nanorc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yaml.nanorc b/yaml.nanorc index f202cd8..de89e76 100644 --- a/yaml.nanorc +++ b/yaml.nanorc @@ -15,7 +15,7 @@ color yellow "(^| )!!(binary|bool|float|int|map|null|omap|seq|set|str) " # Separator color brightwhite "^\s+-" -color brightwhite ":(\s|\t|$)" +color brightwhite ":(\s|$)" # Comments color brightblue "(^|[[:space:]])#.*$"