This is so vibe coded, but in the interest of time, its a bit necessary. Plus this is a complex problem that I don't have the mental bandwidth to invest right now.
11 lines
189 B
Go
11 lines
189 B
Go
package syntax
|
|
|
|
import _ "embed"
|
|
|
|
//go:embed queries/go/highlights.scm
|
|
var goHighlightsQuery string
|
|
|
|
func loadGoHighlightsQuery() ([]byte, error) {
|
|
return []byte(goHighlightsQuery), nil
|
|
}
|