Home | History | Annotate | Download | only in lib

Lines Matching refs:style

62 # style to STYLE, and one to reset the style to the default.  The
65 # STYLE can either be the payload part of an ANSI terminal sequence,
69 proc style {str style} {
70 switch -exact -- $style {
71 title { set style 1 }
72 command { set style 1 }
73 file { set style 32 }
74 function { set style 33 }
75 highlight { set style 31 }
76 variable { set style 36 }
77 address { set style 34 }
78 metadata { set style 2 }
79 version { set style "35;1" }
80 line-number { set style 2 }
83 return "\033\\\[${style}m${str}\033\\\[m"