nano

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

commit c3cdb099da75c4e23a7483cadfdd34988a0e0663
parent 682a088fb83b445e7055922254b4fb29deecf6f1
Author: Benno Schulenberg <bensberg@telfort.nl>
Date:   Mon,  5 Apr 2021 16:06:54 +0200

tweaks: reshuffle a comment, and put the main extension first

And add some air to the compact file.

Diffstat:
Msyntax/tcl.nanorc | 10+++++++---
1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/syntax/tcl.nanorc b/syntax/tcl.nanorc @@ -1,23 +1,27 @@ -## Syntax highlighting for Tcl files. +## Syntax highlighting for Tcl and Expect scripts. -# Handle expect & TCL scripts. -syntax tcl "\.(exp|tcl)$" +syntax tcl "\.(tcl|exp)$" magic "Tcl(/Tk)? script" comment "#" # Standard Tcl [info commands]: color green "\<(after|append|array|auto_execok|auto_import|auto_load|auto_load_index|auto_qualify|binary|break|case|catch|cd|clock|close|concat|continue|encoding|eof|error|eval|exec|exit|expr|fblocked|fconfigure|fcopy|file|fileevent|flush|for|foreach|format|gets|glob|global|history|if|incr|info|interp|join|lappend|lindex|linsert|list|llength|load|lrange|lreplace|lsearch|lset|lsort|namespace|open|package|pid|puts|pwd|read|regexp|regsub|rename|return|scan|seek|set|socket|source|split|string|subst|switch|tclLog|tell|time|trace|unknown|unset|update|uplevel|upvar|variable|vwait|while)\>" + # Basic Tcl subcommands: color green "\<array (anymore|donesearch|exists|get|names|nextelement|set|size|startsearch|statistics|unset)\>" color green "\<string (bytelength|compare|equal|first|index|is|last|length|map|match|range|repeat|replace|to|tolower|totitle|toupper|trim|trimleft|trimright|will|wordend|wordstart)\>" + # Extended TclX [info commands]: color green "\<(alarm|auto_load_pkg|bsearch|catclose|catgets|catopen|ccollate|cconcat|cequal|chgrp|chmod|chown|chroot|cindex|clength|cmdtrace|commandloop|crange|csubstr|ctoken|ctype|dup|echo|execl|fcntl|flock|fork|fstat|ftruncate|funlock|host_info|id|infox|keyldel|keylget|keylkeys|keylset|kill|lassign|lcontain|lempty|lgets|link|lmatch|loadlibindex|loop|lvarcat|lvarpop|lvarpush|max|min|nice|pipe|profile|random|readdir|replicate|scancontext|scanfile|scanmatch|select|server_accept|server_create|signal|sleep|sync|system|tclx_findinit|tclx_fork|tclx_load_tndxs|tclx_sleep|tclx_system|tclx_wait|times|translit|try_eval|umask|wait)\>" + # Syntax: color brightblue "\<proc[[:space:]]|\{|\}" color green "\(|\)|\;|`|\\|\$|<|>|!|=|&|\|" color brightyellow ""(\\.|[^"])*"" "'(\\.|[^'])*'" color brightred "\$\{?[0-9A-Za-z_!@#$*?-]+\}?" + # Trailing whitespace: color ,green "[[:space:]]+$" + # Comments: color cyan "^[[:space:]]*#.*"