AlanQuatermain / go-tmbundle

A TextMate bundle for the Go programming language.
http://alanquatermain.net/
Other
127 stars 40 forks source link

Syntax highlighting problem #65

Open AlekSi opened 5 years ago

AlekSi commented 5 years ago
var (
    factories      = make(map[string]func() (Collector, error))
    collectorState = make(map[string]*bool)
)

func registerCollector(collector string, isDefaultEnabled bool, factory func() (Collector, error)) {
  // ...
}

Note that everything is black after collectorState variables.