(v string)
| 215 | var descRE = regexp.MustCompile(`{[^}]+}`) |
| 216 | |
| 217 | func preprocess_desc(v string) string { |
| 218 | return descRE.ReplaceAllStringFunc(v, func(v string) string { |
| 219 | return color_cyan + v[1:len(v)-1] + color_none |
| 220 | }) |
| 221 | } |
| 222 | |
| 223 | func (this *config) options() string { |
| 224 | var buf bytes.Buffer |