Feat: Add syntax highlighting for a lot more languages
This commit is contained in:
646
grammar/c.scm
646
grammar/c.scm
@@ -1,11 +1,54 @@
|
||||
;; #ffffff #000000 0 0 0 1
|
||||
((identifier) @variable
|
||||
(#set! priority 95))
|
||||
; ============================================================
|
||||
; Identifiers
|
||||
; ============================================================
|
||||
|
||||
;; #FFFFFF #000000 0 0 0 1
|
||||
((identifier) @variable)
|
||||
|
||||
;; #FFB870 #000000 0 0 0 9
|
||||
(function_declarator
|
||||
declarator: (identifier) @function)
|
||||
|
||||
;; #C4B5FF #000000 0 0 0 2
|
||||
((identifier) @constant
|
||||
(#match? @constant "^[A-Z][A-Z0-9_]+$"))
|
||||
|
||||
;; #C4B5FF #000000 0 0 0 2
|
||||
(preproc_def
|
||||
(preproc_arg) @constant
|
||||
(#match? @constant "^[A-Z][A-Z0-9_]+$"))
|
||||
|
||||
;; #F29CC3 #000000 0 0 0 2
|
||||
((identifier) @constant.builtin
|
||||
(#match? @constant.builtin "^(stderr|stdin|stdout|__FILE__|__LINE__|__DATE__|__TIME__|__STDC__|__STDC_VERSION__|__STDC_HOSTED__|__cplusplus|__OBJC__|__ASSEMBLER__|__BASE_FILE__|__FILE_NAME__|__INCLUDE_LEVEL__|__TIMESTAMP__|__clang__|__clang_major__|__clang_minor__|__clang_patchlevel__|__clang_version__|__clang_literal_encoding__|__clang_wide_literal_encoding__|__FUNCTION__|__func__|__PRETTY_FUNCTION__|__VA_ARGS__|__VA_OPT__)$"))
|
||||
|
||||
;; #F29CC3 #000000 0 0 0 2
|
||||
(preproc_def
|
||||
(preproc_arg) @constant.builtin
|
||||
(#match? @constant.builtin "^(stderr|stdin|stdout|__FILE__|__LINE__|__DATE__|__TIME__|__STDC__|__STDC_VERSION__|__STDC_HOSTED__|__cplusplus|__OBJC__|__ASSEMBLER__|__BASE_FILE__|__FILE_NAME__|__INCLUDE_LEVEL__|__TIMESTAMP__|__clang__|__clang_major__|__clang_minor__|__clang_patchlevel__|__clang_version__|__clang_literal_encoding__|__clang_wide_literal_encoding__|__FUNCTION__|__func__|__PRETTY_FUNCTION__|__VA_ARGS__|__VA_OPT__)$"))
|
||||
|
||||
;; #8AD5FF #000000 0 0 0 2
|
||||
(preproc_def
|
||||
(preproc_arg) @variable)
|
||||
|
||||
;; #FF8F40 #000000 0 0 0 1
|
||||
;; #8AD5FF #000000 0 0 0 2
|
||||
(statement_identifier) @label
|
||||
|
||||
;; #8AD5FF #000000 0 0 0 2
|
||||
(declaration
|
||||
type: (type_identifier) @_type
|
||||
declarator: (identifier) @label
|
||||
(#match? @_type "^__label__$"))
|
||||
|
||||
;; #7CD5CF #000000 0 0 0 2
|
||||
((identifier) @variable.member
|
||||
(#match? @variable.member "^m_.*$"))
|
||||
|
||||
; ============================================================
|
||||
; Keywords
|
||||
; ============================================================
|
||||
|
||||
;; #9AD4FF #000000 0 0 0 2
|
||||
[
|
||||
"default"
|
||||
"goto"
|
||||
@@ -13,6 +56,7 @@
|
||||
"__asm__"
|
||||
] @keyword
|
||||
|
||||
;; #9AD4FF #000000 0 0 0 2
|
||||
[
|
||||
"enum"
|
||||
"struct"
|
||||
@@ -20,19 +64,21 @@
|
||||
"typedef"
|
||||
] @keyword.type
|
||||
|
||||
;; #F29CC3 #000000 0 0 0 2
|
||||
[
|
||||
"sizeof"
|
||||
"offsetof"
|
||||
] @keyword.operator
|
||||
|
||||
;; #F29CC3 #000000 0 0 0 2
|
||||
(alignof_expression
|
||||
.
|
||||
_ @keyword.operator)
|
||||
|
||||
;; #FF8F40 #000000 0 0 0 1
|
||||
;; #FFB870 #000000 0 0 0 2
|
||||
"return" @keyword.return
|
||||
|
||||
;; #FF8F40 #000000 0 0 0 1
|
||||
;; #9AD4FF #000000 0 0 0 2
|
||||
[
|
||||
"while"
|
||||
"for"
|
||||
@@ -41,7 +87,7 @@
|
||||
"break"
|
||||
] @keyword.repeat
|
||||
|
||||
;; #FF8F40 #000000 0 0 0 1
|
||||
;; #FFB870 #000000 0 0 0 2
|
||||
[
|
||||
"if"
|
||||
"else"
|
||||
@@ -49,7 +95,14 @@
|
||||
"switch"
|
||||
] @keyword.conditional
|
||||
|
||||
;; #FF8F40 #000000 0 0 0 1
|
||||
;; #9AD4FF #000000 0 0 0 2
|
||||
(conditional_expression
|
||||
[
|
||||
"?"
|
||||
":"
|
||||
] @keyword.conditional.ternary)
|
||||
|
||||
;; #8AD5FF #000000 0 0 0 2
|
||||
[
|
||||
"#if"
|
||||
"#ifdef"
|
||||
@@ -62,33 +115,285 @@
|
||||
(preproc_directive)
|
||||
] @keyword.directive
|
||||
|
||||
;; #FF8F40 #000000 0 0 0 1
|
||||
;; #8AD5FF #000000 0 0 0 2
|
||||
"#define" @keyword.directive.define
|
||||
|
||||
;; #FF8F40 #000000 0 0 0 1
|
||||
;; #8AD5FF #000000 0 0 0 2
|
||||
"#include" @keyword.import
|
||||
|
||||
;; #BFBDB6 #000000 0 0 0 1
|
||||
;; #9AD4FF #000000 0 0 0 2
|
||||
[
|
||||
";"
|
||||
":"
|
||||
","
|
||||
"."
|
||||
"::"
|
||||
] @punctuation.delimiter
|
||||
"try"
|
||||
"catch"
|
||||
"noexcept"
|
||||
"throw"
|
||||
] @keyword.exception
|
||||
|
||||
;; #BFBDB6 #000000 0 0 0 2
|
||||
"..." @punctuation.special
|
||||
|
||||
;; #BFBDB6 #000000 0 0 0 1
|
||||
;; #9AD4FF #000000 0 0 0 2
|
||||
[
|
||||
"("
|
||||
")"
|
||||
"["
|
||||
"]"
|
||||
"{"
|
||||
"}"
|
||||
] @punctuation.bracket
|
||||
"decltype"
|
||||
"explicit"
|
||||
"friend"
|
||||
"override"
|
||||
"using"
|
||||
"requires"
|
||||
"constexpr"
|
||||
] @keyword
|
||||
|
||||
;; #9AD4FF #000000 0 0 0 2
|
||||
[
|
||||
"class"
|
||||
"namespace"
|
||||
"template"
|
||||
"typename"
|
||||
"concept"
|
||||
] @keyword.type
|
||||
|
||||
;; #9AD4FF #000000 0 0 0 2
|
||||
[
|
||||
"co_await"
|
||||
"co_yield"
|
||||
"co_return"
|
||||
] @keyword.coroutine
|
||||
|
||||
;; #F29CC3 #000000 0 0 0 2
|
||||
[
|
||||
"public"
|
||||
"private"
|
||||
"protected"
|
||||
"final"
|
||||
"virtual"
|
||||
] @keyword.modifier
|
||||
|
||||
;; #F29CC3 #000000 0 0 0 2
|
||||
(storage_class_specifier) @keyword.modifier
|
||||
|
||||
;; #F29CC3 #000000 0 0 0 2
|
||||
[
|
||||
(type_qualifier)
|
||||
(gnu_asm_qualifier)
|
||||
"__extension__"
|
||||
] @keyword.modifier
|
||||
|
||||
;; #F29CC3 #000000 0 0 0 2
|
||||
(linkage_specification
|
||||
"extern" @keyword.modifier)
|
||||
|
||||
;; #F29668 #000000 0 0 0 2
|
||||
[
|
||||
"new"
|
||||
"delete"
|
||||
"xor"
|
||||
"bitand"
|
||||
"bitor"
|
||||
"compl"
|
||||
"not"
|
||||
"xor_eq"
|
||||
"and_eq"
|
||||
"or_eq"
|
||||
"not_eq"
|
||||
"and"
|
||||
"or"
|
||||
] @keyword.operator
|
||||
|
||||
;; #F29668 #000000 0 1 0 2
|
||||
"<=>" @operator
|
||||
|
||||
; ============================================================
|
||||
; Types & modules
|
||||
; ============================================================
|
||||
|
||||
;; #C4B5FF #000000 0 0 0 2
|
||||
[
|
||||
(type_identifier)
|
||||
(type_descriptor)
|
||||
] @type
|
||||
|
||||
;; #C4B5FF #000000 0 0 0 2
|
||||
(type_definition
|
||||
declarator: (type_identifier) @type.definition)
|
||||
|
||||
;; #C4B5FF #000000 0 0 0 2
|
||||
(primitive_type) @type.builtin
|
||||
|
||||
;; #C4B5FF #000000 0 0 0 2
|
||||
(sized_type_specifier
|
||||
_ @type.builtin
|
||||
type: _?)
|
||||
|
||||
;; #C4B5FF #000000 0 0 0 2
|
||||
(type_definition declarator: (type_identifier) @name) @definition.type
|
||||
|
||||
;; #C4B5FF #000000 0 0 0 2
|
||||
(enum_specifier name: (type_identifier) @name) @definition.type
|
||||
|
||||
;; #C4B5FF #000000 0 0 0 2
|
||||
(class_specifier name: (type_identifier) @name) @definition.class
|
||||
|
||||
;; #C4B5FF #000000 0 0 0 2
|
||||
(struct_specifier name: (type_identifier) @name body:(_)) @definition.class
|
||||
|
||||
;; #C4B5FF #000000 0 0 0 2
|
||||
(declaration type: (union_specifier name: (type_identifier) @name)) @definition.class
|
||||
|
||||
;; #9AD4FF #000000 0 0 0 2
|
||||
(namespace_identifier) @module
|
||||
|
||||
;; #9AD4FF #000000 0 0 0 2
|
||||
((namespace_identifier) @type
|
||||
(#match? @type "^[A-Z]"))
|
||||
|
||||
;; #9AD4FF #000000 0 0 0 2
|
||||
(using_declaration
|
||||
.
|
||||
"using"
|
||||
.
|
||||
"namespace"
|
||||
.
|
||||
[
|
||||
(qualified_identifier)
|
||||
(identifier)
|
||||
] @module)
|
||||
|
||||
; ============================================================
|
||||
; Functions & calls
|
||||
; ============================================================
|
||||
|
||||
;; #FFB870 #000000 0 0 0 1
|
||||
(operator_name) @function
|
||||
|
||||
;; #FFB870 #000000 0 0 0 3
|
||||
"operator" @function
|
||||
|
||||
;; #78C2FF #000000 0 0 0 2
|
||||
(call_expression
|
||||
function: (identifier) @function.call)
|
||||
|
||||
;; #F29CC3 #000000 0 0 0 2
|
||||
((call_expression
|
||||
function: (identifier) @function.builtin)
|
||||
(#match? @function.builtin "^__builtin_"))
|
||||
|
||||
;; #F29CC3 #000000 0 0 0 2
|
||||
((call_expression
|
||||
function: (identifier) @function.builtin))
|
||||
|
||||
; ============================================================
|
||||
; Constructors & methods
|
||||
; ============================================================
|
||||
|
||||
;; #59C2FF #000000 0 0 0 2
|
||||
((call_expression
|
||||
function: (identifier) @constructor)
|
||||
(#match? @constructor "^[A-Z]"))
|
||||
|
||||
;; #59C2FF #000000 0 0 0 2
|
||||
((call_expression
|
||||
function: (qualified_identifier
|
||||
name: (identifier) @constructor))
|
||||
(#match? @constructor "^[A-Z]"))
|
||||
|
||||
;; #59C2FF #000000 0 0 0 2
|
||||
((call_expression
|
||||
function: (field_expression
|
||||
field: (field_identifier) @constructor))
|
||||
(#match? @constructor "^[A-Z]"))
|
||||
|
||||
;; #59C2FF #000000 0 0 0 2
|
||||
((field_initializer
|
||||
(field_identifier) @constructor
|
||||
(argument_list))
|
||||
(#match? @constructor "^[A-Z]"))
|
||||
|
||||
;; #59C2FF #000000 0 0 0 4
|
||||
(destructor_name
|
||||
(identifier) @function.method)
|
||||
|
||||
; ============================================================
|
||||
; Properties & members
|
||||
; ============================================================
|
||||
|
||||
;; #F29CC3 #000000 0 0 0 2
|
||||
((field_expression
|
||||
(field_identifier) @property) @_parent)
|
||||
|
||||
(field_designator) @property
|
||||
|
||||
((field_identifier) @property)
|
||||
|
||||
(field_initializer
|
||||
(field_identifier) @property)
|
||||
|
||||
;; #F29CC3 #000000 0 0 1 2
|
||||
(field_declaration
|
||||
(field_identifier) @variable.member)
|
||||
|
||||
; ============================================================
|
||||
; Parameters
|
||||
; ============================================================
|
||||
|
||||
;; #7CD5CF #000000 0 0 0 2
|
||||
(parameter_declaration
|
||||
declarator: (identifier) @variable.parameter)
|
||||
|
||||
;; #7CD5CF #000000 0 0 0 2
|
||||
(parameter_declaration
|
||||
declarator: (array_declarator) @variable.parameter)
|
||||
|
||||
;; #7CD5CF #000000 0 0 0 2
|
||||
(parameter_declaration
|
||||
declarator: (pointer_declarator) @variable.parameter)
|
||||
|
||||
;; #7CD5CF #000000 0 0 0 2
|
||||
(preproc_params
|
||||
(identifier) @variable.parameter)
|
||||
|
||||
;; #7CD5CF #000000 0 0 0 2
|
||||
(parameter_declaration
|
||||
declarator: (reference_declarator) @variable.parameter)
|
||||
|
||||
;; #7CD5CF #000000 0 0 0 2
|
||||
(variadic_parameter_declaration
|
||||
declarator: (variadic_declarator
|
||||
(_) @variable.parameter))
|
||||
|
||||
;; #7CD5CF #000000 0 0 0 2
|
||||
(optional_parameter_declaration
|
||||
declarator: (_) @variable.parameter)
|
||||
|
||||
; ============================================================
|
||||
; Attributes & specifiers
|
||||
; ============================================================
|
||||
|
||||
;; #7CD5CF #000000 0 0 0 2
|
||||
[
|
||||
"__attribute__"
|
||||
"__declspec"
|
||||
"__based"
|
||||
"__cdecl"
|
||||
"__clrcall"
|
||||
"__stdcall"
|
||||
"__fastcall"
|
||||
"__thiscall"
|
||||
"__vectorcall"
|
||||
(ms_pointer_modifier)
|
||||
(attribute_declaration)
|
||||
] @attribute
|
||||
|
||||
;; #7CD5CF #000000 0 0 0 2
|
||||
(attribute_specifier
|
||||
(argument_list
|
||||
(identifier) @variable.builtin))
|
||||
|
||||
;; #7CD5CF #000000 0 0 0 2
|
||||
(attribute_specifier
|
||||
(argument_list
|
||||
(call_expression
|
||||
function: (identifier) @variable.builtin)))
|
||||
|
||||
; ============================================================
|
||||
; Operators & punctuation
|
||||
; ============================================================
|
||||
|
||||
;; #F29668 #000000 0 1 0 1
|
||||
[
|
||||
@@ -128,236 +433,147 @@
|
||||
"++"
|
||||
] @operator
|
||||
|
||||
;; #F29668 #000000 0 0 0 1
|
||||
;; #F29668 #000000 0 1 0 1
|
||||
(comma_expression
|
||||
"," @operator)
|
||||
|
||||
;; #D2A6FF #000000 0 0 0 1
|
||||
;; #B6BEC8 #000000 0 0 0 1
|
||||
[
|
||||
";"
|
||||
":"
|
||||
","
|
||||
"."
|
||||
"::"
|
||||
] @punctuation.delimiter
|
||||
|
||||
;; #B6BEC8 #000000 0 0 0 1
|
||||
"::" @punctuation.delimiter
|
||||
|
||||
;; #B6BEC8 #000000 0 0 0 1
|
||||
"..." @punctuation.special
|
||||
|
||||
;; #B6BEC8 #000000 0 0 0 1
|
||||
[
|
||||
"("
|
||||
")"
|
||||
"["
|
||||
"]"
|
||||
"{"
|
||||
"}"
|
||||
] @punctuation.bracket
|
||||
|
||||
;; #B6BEC8 #000000 0 0 0 1
|
||||
(template_argument_list
|
||||
[
|
||||
"<"
|
||||
">"
|
||||
] @punctuation.bracket)
|
||||
|
||||
;; #B6BEC8 #000000 0 0 0 1
|
||||
(template_parameter_list
|
||||
[
|
||||
"<"
|
||||
">"
|
||||
] @punctuation.bracket)
|
||||
|
||||
; ============================================================
|
||||
; Literals
|
||||
; ============================================================
|
||||
|
||||
;; #C2E8FF #000000 0 0 0 2
|
||||
[
|
||||
(true)
|
||||
(false)
|
||||
] @boolean
|
||||
|
||||
;; #F29668 #000000 0 0 0 1
|
||||
(conditional_expression
|
||||
[
|
||||
"?"
|
||||
":"
|
||||
] @keyword.conditional.ternary)
|
||||
;; #C2E8FF #000000 0 0 0 2
|
||||
(true) @boolean_true
|
||||
|
||||
;; #aad84c #000000 0 0 0 1
|
||||
;; #C2E8FF #000000 0 0 0 2
|
||||
(false) @boolean_false
|
||||
|
||||
;; #A6E3A1 #000000 0 0 0 2
|
||||
(string_literal) @string
|
||||
|
||||
;; #A6E3A1 #000000 0 0 0 2
|
||||
(system_lib_string) @string
|
||||
|
||||
;; #95E6CB #000000 0 0 0 2
|
||||
;; #A6E3A1 #000000 0 0 0 2
|
||||
(raw_string_literal) @string
|
||||
|
||||
;; #A6E3A1 #000000 0 0 0 2
|
||||
(escape_sequence) @string.escape
|
||||
|
||||
;; #D2A6FF #000000 0 0 0 1
|
||||
(null) @constant.builtin
|
||||
|
||||
;; #D2A6FF #000000 0 0 0 1
|
||||
;; #B8E986 #000000 0 0 0 2
|
||||
(number_literal) @number
|
||||
|
||||
;; #39BAE6 #000000 0 0 0 1
|
||||
;; #B8E986 #000000 0 0 0 2
|
||||
(char_literal) @character
|
||||
|
||||
;; #FFB454 #000000 0 0 0 1
|
||||
(preproc_defined) @function.macro
|
||||
;; #F29CC3 #000000 0 0 0 2
|
||||
(null) @constant.builtin
|
||||
|
||||
;; #F07178 #000000 0 0 0 1
|
||||
((field_expression
|
||||
(field_identifier) @property) @_parent)
|
||||
;; #F29CC3 #000000 0 0 0 2
|
||||
(null
|
||||
"nullptr" @constant.builtin)
|
||||
|
||||
(field_designator) @property
|
||||
; ============================================================
|
||||
; Macros & directives
|
||||
; ============================================================
|
||||
|
||||
((field_identifier) @property)
|
||||
|
||||
;; #39BAE6 #000000 0 0 0 1
|
||||
(statement_identifier) @label
|
||||
|
||||
(declaration
|
||||
type: (type_identifier) @_type
|
||||
declarator: (identifier) @label
|
||||
(#match? @_type "^__label__$"))
|
||||
|
||||
;; #59C2FF #000000 0 0 0 1
|
||||
[
|
||||
(type_identifier)
|
||||
(type_descriptor)
|
||||
] @type
|
||||
|
||||
;; #FF8F40 #000000 0 0 0 1
|
||||
(storage_class_specifier) @keyword.modifier
|
||||
|
||||
[
|
||||
(type_qualifier)
|
||||
(gnu_asm_qualifier)
|
||||
"__extension__"
|
||||
] @keyword.modifier
|
||||
|
||||
;; #FF8F40 #000000 0 0 0 1
|
||||
(linkage_specification
|
||||
"extern" @keyword.modifier)
|
||||
|
||||
;; #59C2FF #000000 0 0 0 1
|
||||
(type_definition
|
||||
declarator: (type_identifier) @type.definition)
|
||||
|
||||
;; #59C2FF #000000 0 0 0 1
|
||||
(primitive_type) @type.builtin
|
||||
|
||||
(sized_type_specifier
|
||||
_ @type.builtin
|
||||
type: _?)
|
||||
|
||||
;; #D2A6FF #000000 0 0 0 1
|
||||
((identifier) @constant
|
||||
(#match? @constant "^[A-Z][A-Z0-9_]+$"))
|
||||
|
||||
(preproc_def
|
||||
(preproc_arg) @constant
|
||||
(#match? @constant "^[A-Z][A-Z0-9_]+$"))
|
||||
|
||||
(enumerator
|
||||
name: (identifier) @constant)
|
||||
|
||||
(case_statement
|
||||
value: (identifier) @constant)
|
||||
|
||||
;; #D2A6FF #000000 0 0 0 1
|
||||
((identifier) @constant.builtin
|
||||
(#match? @constant.builtin "^(stderr|stdin|stdout|__FILE__|__LINE__|__DATE__|__TIME__|__STDC__|__STDC_VERSION__|__STDC_HOSTED__|__cplusplus|__OBJC__|__ASSEMBLER__|__BASE_FILE__|__FILE_NAME__|__INCLUDE_LEVEL__|__TIMESTAMP__|__clang__|__clang_major__|__clang_minor__|__clang_patchlevel__|__clang_version__|__clang_literal_encoding__|__clang_wide_literal_encoding__|__FUNCTION__|__func__|__PRETTY_FUNCTION__|__VA_ARGS__|__VA_OPT__)$"))
|
||||
|
||||
(preproc_def
|
||||
(preproc_arg) @constant.builtin
|
||||
(#match? @constant.builtin "^(stderr|stdin|stdout|__FILE__|__LINE__|__DATE__|__TIME__|__STDC__|__STDC_VERSION__|__STDC_HOSTED__|__cplusplus|__OBJC__|__ASSEMBLER__|__BASE_FILE__|__FILE_NAME__|__INCLUDE_LEVEL__|__TIMESTAMP__|__clang__|__clang_major__|__clang_minor__|__clang_patchlevel__|__clang_version__|__clang_literal_encoding__|__clang_wide_literal_encoding__|__FUNCTION__|__func__|__PRETTY_FUNCTION__|__VA_ARGS__|__VA_OPT__)$"))
|
||||
|
||||
;; #D2A6FF #000000 0 0 0 1
|
||||
(attribute_specifier
|
||||
(argument_list
|
||||
(identifier) @variable.builtin))
|
||||
|
||||
(attribute_specifier
|
||||
(argument_list
|
||||
(call_expression
|
||||
function: (identifier) @variable.builtin)))
|
||||
|
||||
;; #FFB454 #000000 0 0 0 1
|
||||
((call_expression
|
||||
function: (identifier) @function.builtin)
|
||||
(#match? @function.builtin "^__builtin_"))
|
||||
|
||||
((call_expression
|
||||
function: (identifier) @function.builtin))
|
||||
|
||||
;; #D2A6FF #000000 0 0 0 1
|
||||
;; #F29CC3 #000000 0 0 0 2
|
||||
(preproc_def
|
||||
name: (_) @constant.macro)
|
||||
|
||||
;; #F29CC3 #000000 0 0 0 2
|
||||
(preproc_call
|
||||
directive: (preproc_directive) @_u
|
||||
argument: (_) @constant.macro
|
||||
(#match? @_u "^#undef$"))
|
||||
|
||||
;; #F29CC3 #000000 0 0 0 2
|
||||
(preproc_ifdef
|
||||
name: (identifier) @constant.macro)
|
||||
|
||||
;; #F29CC3 #000000 0 0 0 2
|
||||
(preproc_elifdef
|
||||
name: (identifier) @constant.macro)
|
||||
|
||||
;; #F29CC3 #000000 0 0 0 2
|
||||
(preproc_defined
|
||||
(identifier) @constant.macro)
|
||||
|
||||
;; #FFB454 #000000 0 0 0 3
|
||||
(call_expression
|
||||
function: (identifier) @function.call)
|
||||
;; #F29CC3 #000000 0 0 0 2
|
||||
(preproc_defined) @function.macro
|
||||
|
||||
(call_expression
|
||||
function: (field_expression
|
||||
field: (field_identifier) @function.call))
|
||||
; ============================================================
|
||||
; Builtins & special identifiers
|
||||
; ============================================================
|
||||
|
||||
;; #FFB454 #000000 0 0 0 3
|
||||
(function_declarator
|
||||
declarator: (identifier) @function)
|
||||
;; #F28FAD #000000 0 0 0 2
|
||||
(attribute_specifier
|
||||
(argument_list
|
||||
(identifier) @variable.builtin))
|
||||
|
||||
(function_declarator
|
||||
declarator: (parenthesized_declarator
|
||||
(pointer_declarator
|
||||
declarator: (field_identifier) @function)))
|
||||
;; #F28FAD #000000 0 0 0 2
|
||||
(attribute_specifier
|
||||
(argument_list
|
||||
(call_expression
|
||||
function: (identifier) @variable.builtin)))
|
||||
|
||||
;; #FFB454 #000000 0 0 0 3
|
||||
(preproc_function_def
|
||||
name: (identifier) @function.macro)
|
||||
;; #F28FAD #000000 0 0 0 2
|
||||
(this) @variable.builtin
|
||||
|
||||
; ============================================================
|
||||
; Exceptions & control helpers
|
||||
; ============================================================
|
||||
|
||||
;; #FFB870 #000000 0 0 0 2
|
||||
"static_assert" @function.builtin
|
||||
|
||||
; ============================================================
|
||||
; Comments
|
||||
; ============================================================
|
||||
|
||||
;; #99ADBF #000000 0 1 0 1
|
||||
(comment) @comment @spell
|
||||
|
||||
;; #99ADBF #000000 0 1 0 1
|
||||
((comment) @comment.documentation
|
||||
(#match? @comment.documentation "^/[*][*][^*].*[*]/$"))
|
||||
|
||||
;; #D2A6FF #000000 0 0 0 1
|
||||
(parameter_declaration
|
||||
declarator: (identifier) @variable.parameter)
|
||||
|
||||
(parameter_declaration
|
||||
declarator: (array_declarator) @variable.parameter)
|
||||
|
||||
(parameter_declaration
|
||||
declarator: (pointer_declarator) @variable.parameter)
|
||||
|
||||
(preproc_params
|
||||
(identifier) @variable.parameter)
|
||||
|
||||
;; #FF8F40 #000000 0 0 0 1
|
||||
[
|
||||
"__attribute__"
|
||||
"__declspec"
|
||||
"__based"
|
||||
"__cdecl"
|
||||
"__clrcall"
|
||||
"__stdcall"
|
||||
"__fastcall"
|
||||
"__thiscall"
|
||||
"__vectorcall"
|
||||
(ms_pointer_modifier)
|
||||
(attribute_declaration)
|
||||
] @attribute
|
||||
|
||||
;; #F07178 #000000 0 0 0 1
|
||||
((identifier) @variable.member
|
||||
(#match? @variable.member "^m_.*$"))
|
||||
|
||||
(parameter_declaration
|
||||
declarator: (reference_declarator) @variable.parameter)
|
||||
|
||||
(variadic_parameter_declaration
|
||||
declarator: (variadic_declarator
|
||||
(_) @variable.parameter))
|
||||
|
||||
(optional_parameter_declaration
|
||||
declarator: (_) @variable.parameter)
|
||||
|
||||
;; #F07178 #000000 0 0 0 1
|
||||
((field_expression
|
||||
(field_identifier) @function.method) @_parent)
|
||||
|
||||
(field_declaration
|
||||
(field_identifier) @variable.member)
|
||||
|
||||
(field_initializer
|
||||
(field_identifier) @property)
|
||||
|
||||
(function_declarator
|
||||
declarator: (field_identifier) @function.method)
|
||||
|
||||
;; #59C2FF #000000 0 0 0 3
|
||||
(concept_definition
|
||||
name: (identifier) @type.definition)
|
||||
|
||||
(alias_declaration
|
||||
name: (type_identifier) @type.definition)
|
||||
|
||||
;; #59C2FF #000000 0 0 0 1
|
||||
(auto) @type.builtin
|
||||
|
||||
Reference in New Issue
Block a user