blob: adbb60597db4c3770df055ce9d7d846012d95516 [file] [log] [blame]
Benno Schulenbergc4b344f2014-02-23 16:07:44 +00001## Syntax highlighting for Tcl files.
2
Chris Allegretta90ee8ee2008-03-20 04:45:55 +00003syntax "tcl" "\.tcl$"
Mike Scalora6a2032f2016-05-25 22:13:50 +02004comment "#"
Chris Allegretta90ee8ee2008-03-20 04:45:55 +00005
Benno Schulenbergc4b344f2014-02-23 16:07:44 +00006# Standard Tcl [info commands]:
Chris Allegretta90ee8ee2008-03-20 04:45:55 +00007color 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)\>"
Benno Schulenbergc4b344f2014-02-23 16:07:44 +00008# Basic Tcl subcommands:
Chris Allegretta90ee8ee2008-03-20 04:45:55 +00009color green "\<(array anymore|array donesearch|array exists|array get|array names|array nextelement|array set|array size|array startsearch|array statistics|array unset)\>"
10color green "\<(string bytelength|string compare|string equal|string first|string index|string is|string last|string length|string map|string match|string range|string repeat|string replace|string to|string tolower|string totitle|string toupper|string trim|string trimleft|string trimright|string will|string wordend|string wordstart)\>"
Benno Schulenbergc4b344f2014-02-23 16:07:44 +000011# Extended TclX [info commands]:
Chris Allegretta90ee8ee2008-03-20 04:45:55 +000012color 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)\>"
Benno Schulenbergc4b344f2014-02-23 16:07:44 +000013# Syntax:
Chris Allegretta90ee8ee2008-03-20 04:45:55 +000014color brightblue "proc[[:space:]]" "(\{|\})"
15color green "(\(|\)|\;|`|\\|\$|<|>|!|=|&|\|)"
16color brightyellow ""(\\.|[^"])*"" "'(\\.|[^'])*'"
17icolor brightred "\$\{?[0-9A-Z_!@#$*?-]+\}?"
18color ,green "[[:space:]]+$"
Chris Allegretta308a7b02009-08-18 02:55:22 +000019color ,magenta "^[[:space:]]*#.*"