Variable: go-mod-ts-mode--font-lock-settings
go-mod-ts-mode--font-lock-settings is a variable defined in
go-ts-mode.el.gz.
Value
((#<treesit-compiled-query> t bracket nil)
(#<treesit-compiled-query> t comment nil)
(#<treesit-compiled-query> t keyword nil)
(#<treesit-compiled-query> t number nil)
(#<treesit-compiled-query> t operator nil)
(#<treesit-compiled-query> t error t))
Documentation
Tree-sitter font-lock settings for go-mod-ts-mode.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/go-ts-mode.el.gz
(defvar go-mod-ts-mode--font-lock-settings
(treesit-font-lock-rules
:language 'gomod
:feature 'bracket
'((["(" ")"]) @font-lock-bracket-face)
:language 'gomod
:feature 'comment
'((comment) @font-lock-comment-face)
:language 'gomod
:feature 'keyword
`([,@go-mod-ts-mode--keywords] @font-lock-keyword-face)
:language 'gomod
:feature 'number
'([(go_version) (version)] @font-lock-number-face)
:language 'gomod
:feature 'operator
'((["=>"]) @font-lock-operator-face)
:language 'gomod
:feature 'error
:override t
'((ERROR) @font-lock-warning-face))
"Tree-sitter font-lock settings for `go-mod-ts-mode'.")