mirror of https://github.com/Wilfred/difftastic/
75 lines
1.0 KiB
Scheme
75 lines
1.0 KiB
Scheme
; Functions
|
|
|
|
(call_expression
|
|
function: (qualified_identifier
|
|
name: (identifier) @function))
|
|
|
|
(template_function
|
|
name: (identifier) @function)
|
|
|
|
(template_method
|
|
name: (field_identifier) @function)
|
|
|
|
(template_function
|
|
name: (identifier) @function)
|
|
|
|
(function_declarator
|
|
declarator: (qualified_identifier
|
|
name: (identifier) @function))
|
|
|
|
(function_declarator
|
|
declarator: (qualified_identifier
|
|
name: (identifier) @function))
|
|
|
|
(function_declarator
|
|
declarator: (field_identifier) @function)
|
|
|
|
; Types
|
|
|
|
((namespace_identifier) @type
|
|
(#match? @type "^[A-Z]"))
|
|
|
|
(auto) @type
|
|
|
|
; Constants
|
|
|
|
(this) @variable.builtin
|
|
(null "nullptr" @constant)
|
|
|
|
; Keywords
|
|
|
|
[
|
|
"catch"
|
|
"class"
|
|
"co_await"
|
|
"co_return"
|
|
"co_yield"
|
|
"constexpr"
|
|
"constinit"
|
|
"consteval"
|
|
"delete"
|
|
"explicit"
|
|
"final"
|
|
"friend"
|
|
"mutable"
|
|
"namespace"
|
|
"noexcept"
|
|
"new"
|
|
"override"
|
|
"private"
|
|
"protected"
|
|
"public"
|
|
"template"
|
|
"throw"
|
|
"try"
|
|
"typename"
|
|
"using"
|
|
"virtual"
|
|
"concept"
|
|
"requires"
|
|
] @keyword
|
|
|
|
; Strings
|
|
|
|
(raw_string_literal) @string
|