nano

nano with my custom patches
git clone git://bsandro.tech/nano
Log | Files | Refs | README | LICENSE

commit 9cdc64c97ac6ec56073f4f30fc6f71418d07b5ad
parent 5acfa5bb7b1a688e3f96b685a488cd8f3e606830
Author: Benno Schulenberg <bensberg@telfort.nl>
Date:   Mon, 17 Dec 2018 15:23:32 +0100

syntax: tcl: colorize comments normally, not with a background hue

This makes for a less "messy" and more readable appearance.

Suggested-by: Michael Siegel <msi@malbolge.net>

Diffstat:
Msyntax/tcl.nanorc | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git 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:]]*#.*"