:feature 'comment
'((comment) @font-lock-comment-face)
+ :language 'go
+ :feature 'builtin
+ `((call_expression
+ function: ((identifier) @font-lock-builtin-face
+ (:match ,(rx-to-string
+ `(seq bol
+ (or ,@go-ts-mode--builtin-functions)
+ eol))
+ @font-lock-builtin-face))))
+
:language 'go
:feature 'constant
`([(false) (nil) (true)] @font-lock-constant-face
(var_spec name: (identifier) @font-lock-variable-name-face
("," name: (identifier) @font-lock-variable-name-face)*))
- :language 'go
- :feature 'builtin
- `((call_expression
- function: ((identifier) @font-lock-builtin-face
- (:match ,(rx-to-string
- `(seq bol
- (or ,@go-ts-mode--builtin-functions)
- eol))
- @font-lock-builtin-face))))
-
:language 'go
:feature 'function
'((call_expression