From 9cdc64c97ac6ec56073f4f30fc6f71418d07b5ad Mon Sep 17 00:00:00 2001 From: Benno Schulenberg Date: Mon, 17 Dec 2018 15:23:32 +0100 Subject: [PATCH] syntax: tcl: colorize comments normally, not with a background hue This makes for a less "messy" and more readable appearance. Suggested-by: Michael Siegel --- syntax/tcl.nanorc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/syntax/tcl.nanorc b/syntax/tcl.nanorc index 2636425a..592e02b2 100644 --- a/syntax/tcl.nanorc +++ b/syntax/tcl.nanorc @@ -17,4 +17,5 @@ color green "(\(|\)|\;|`|\\|\$|<|>|!|=|&|\|)" color brightyellow ""(\\.|[^"])*"" "'(\\.|[^'])*'" icolor brightred "\$\{?[0-9A-Z_!@#$*?-]+\}?" color ,green "[[:space:]]+$" -color ,magenta "^[[:space:]]*#.*" +# Comments: +color cyan "^[[:space:]]*#.*"