Fix C++ syntax highlighting, and improve C & WGSL highlighting (#4079)
This commit is contained in:
parent
cf4a5cca96
commit
b4e795d704
4 changed files with 274 additions and 175 deletions
|
@ -184,7 +184,7 @@ args = { console = "internalConsole", attachCommands = [ "platform select remote
|
|||
|
||||
[[grammar]]
|
||||
name = "c"
|
||||
source = { git = "https://github.com/tree-sitter/tree-sitter-c", rev = "f05e279aedde06a25801c3f2b2cc8ac17fac52ae" }
|
||||
source = { git = "https://github.com/tree-sitter/tree-sitter-c", rev = "7175a6dd5fc1cee660dce6fe23f6043d75af424a" }
|
||||
|
||||
[[language]]
|
||||
name = "cpp"
|
||||
|
@ -221,7 +221,7 @@ args = { console = "internalConsole", attachCommands = [ "platform select remote
|
|||
|
||||
[[grammar]]
|
||||
name = "cpp"
|
||||
source = { git = "https://github.com/tree-sitter/tree-sitter-cpp", rev = "e8dcc9d2b404c542fd236ea5f7208f90be8a6e89" }
|
||||
source = { git = "https://github.com/tree-sitter/tree-sitter-cpp", rev = "d5e90fba898f320db48d81ddedd78d52c67c1fed" }
|
||||
|
||||
[[language]]
|
||||
name = "c-sharp"
|
||||
|
|
|
@ -1,29 +1,45 @@
|
|||
(storage_class_specifier) @keyword.storage
|
||||
|
||||
"goto" @keyword
|
||||
"register" @keyword
|
||||
"break" @keyword
|
||||
"case" @keyword
|
||||
"continue" @keyword
|
||||
"default" @keyword
|
||||
"do" @keyword
|
||||
"else" @keyword
|
||||
"enum" @keyword
|
||||
"extern" @keyword
|
||||
"for" @keyword
|
||||
"if" @keyword
|
||||
"inline" @keyword
|
||||
"return" @keyword
|
||||
"sizeof" @keyword
|
||||
"struct" @keyword
|
||||
"switch" @keyword
|
||||
"typedef" @keyword
|
||||
"union" @keyword
|
||||
"volatile" @keyword
|
||||
"while" @keyword
|
||||
"const" @keyword
|
||||
|
||||
[
|
||||
"enum"
|
||||
"struct"
|
||||
"typedef"
|
||||
"union"
|
||||
] @keyword.storage.type
|
||||
|
||||
[
|
||||
"const"
|
||||
"extern"
|
||||
"inline"
|
||||
"register"
|
||||
"volatile"
|
||||
(storage_class_specifier)
|
||||
] @keyword.storage.modifier
|
||||
|
||||
[
|
||||
"goto"
|
||||
"break"
|
||||
"continue"
|
||||
] @keyword.control
|
||||
|
||||
[
|
||||
"do"
|
||||
"for"
|
||||
"while"
|
||||
] @keyword.control.repeat
|
||||
|
||||
[
|
||||
"if"
|
||||
"else"
|
||||
"switch"
|
||||
"case"
|
||||
"default"
|
||||
] @keyword.control.conditional
|
||||
|
||||
"return" @keyword.control.return
|
||||
|
||||
[
|
||||
"defined"
|
||||
"#define"
|
||||
"#elif"
|
||||
"#else"
|
||||
|
@ -35,31 +51,54 @@
|
|||
(preproc_directive)
|
||||
] @keyword.directive
|
||||
|
||||
"--" @operator
|
||||
"-" @operator
|
||||
"-=" @operator
|
||||
"->" @operator
|
||||
"=" @operator
|
||||
"!=" @operator
|
||||
"*" @operator
|
||||
"&" @operator
|
||||
"&&" @operator
|
||||
"+" @operator
|
||||
"++" @operator
|
||||
"+=" @operator
|
||||
"<" @operator
|
||||
"==" @operator
|
||||
">" @operator
|
||||
"||" @operator
|
||||
">=" @operator
|
||||
"<=" @operator
|
||||
[
|
||||
"+"
|
||||
"-"
|
||||
"*"
|
||||
"/"
|
||||
"++"
|
||||
"--"
|
||||
"%"
|
||||
"=="
|
||||
"!="
|
||||
">"
|
||||
"<"
|
||||
">="
|
||||
"<="
|
||||
"&&"
|
||||
"||"
|
||||
"!"
|
||||
"&"
|
||||
"|"
|
||||
"^"
|
||||
"~"
|
||||
"<<"
|
||||
">>"
|
||||
"="
|
||||
"+="
|
||||
"-="
|
||||
"*="
|
||||
"/="
|
||||
"%="
|
||||
"<<="
|
||||
">>="
|
||||
"&="
|
||||
"^="
|
||||
"|="
|
||||
"?"
|
||||
] @operator
|
||||
|
||||
"." @punctuation.delimiter
|
||||
";" @punctuation.delimiter
|
||||
(conditional_expression ":" @operator)
|
||||
|
||||
"..." @punctuation
|
||||
|
||||
["," "." ":" ";" "->" "::"] @punctuation.delimiter
|
||||
|
||||
["(" ")" "[" "]" "{" "}"] @punctuation.bracket
|
||||
|
||||
[(true) (false)] @constant.builtin.boolean
|
||||
|
||||
(enumerator) @type.enum.variant
|
||||
(enumerator name: (identifier) @type.enum.variant)
|
||||
|
||||
(string_literal) @string
|
||||
(system_lib_string) @string
|
||||
|
@ -73,15 +112,24 @@
|
|||
(call_expression
|
||||
function: (field_expression
|
||||
field: (field_identifier) @function))
|
||||
(call_expression (argument_list (identifier) @variable))
|
||||
(function_declarator
|
||||
declarator: (identifier) @function)
|
||||
declarator: [(identifier) (field_identifier)] @function)
|
||||
(parameter_declaration
|
||||
declarator: (identifier) @variable.parameter)
|
||||
(parameter_declaration
|
||||
(pointer_declarator
|
||||
declarator: (identifier) @variable.parameter))
|
||||
(preproc_function_def
|
||||
name: (identifier) @function.special)
|
||||
|
||||
(attribute
|
||||
name: (identifier) @attribute)
|
||||
|
||||
(field_identifier) @variable.other.member
|
||||
(statement_identifier) @label
|
||||
(type_identifier) @type
|
||||
(primitive_type) @type
|
||||
(primitive_type) @type.builtin
|
||||
(sized_type_specifier) @type
|
||||
|
||||
((identifier) @constant
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
; inherits: c
|
||||
|
||||
; Functions
|
||||
|
||||
(call_expression
|
||||
|
@ -12,56 +10,106 @@
|
|||
(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))
|
||||
name: (qualified_identifier
|
||||
name: (identifier) @function)))
|
||||
|
||||
(function_declarator
|
||||
declarator: (field_identifier) @function)
|
||||
|
||||
; Types
|
||||
|
||||
((namespace_identifier) @type
|
||||
(#match? @type "^[A-Z]"))
|
||||
(using_declaration ("using" "namespace" (identifier) @namespace))
|
||||
(using_declaration ("using" "namespace" (qualified_identifier name: (identifier) @namespace)))
|
||||
(namespace_definition name: (identifier) @namespace)
|
||||
(namespace_identifier) @namespace
|
||||
|
||||
(qualified_identifier name: (identifier) @type.enum.variant)
|
||||
|
||||
(auto) @type
|
||||
"decltype" @type
|
||||
|
||||
; Constants
|
||||
|
||||
(this) @variable.builtin
|
||||
(nullptr) @constant
|
||||
(nullptr) @constant.builtin
|
||||
|
||||
; Keywords
|
||||
|
||||
"catch" @keyword
|
||||
"class" @keyword
|
||||
"constexpr" @keyword
|
||||
"delete" @keyword
|
||||
"explicit" @keyword
|
||||
"final" @keyword
|
||||
"friend" @keyword
|
||||
"mutable" @keyword
|
||||
"namespace" @keyword
|
||||
"noexcept" @keyword
|
||||
"new" @keyword
|
||||
"override" @keyword
|
||||
"private" @keyword
|
||||
"protected" @keyword
|
||||
"public" @keyword
|
||||
"template" @keyword
|
||||
"throw" @keyword
|
||||
"try" @keyword
|
||||
"typename" @keyword
|
||||
"using" @keyword
|
||||
"virtual" @keyword
|
||||
(template_argument_list (["<" ">"] @punctuation.bracket))
|
||||
(template_parameter_list (["<" ">"] @punctuation.bracket))
|
||||
(default_method_clause "default" @keyword)
|
||||
|
||||
"static_assert" @function.special
|
||||
|
||||
[
|
||||
"<=>"
|
||||
"[]"
|
||||
"()"
|
||||
] @operator
|
||||
|
||||
[
|
||||
"co_await"
|
||||
"co_return"
|
||||
"co_yield"
|
||||
"concept"
|
||||
"delete"
|
||||
"final"
|
||||
"new"
|
||||
"operator"
|
||||
"requires"
|
||||
"using"
|
||||
] @keyword
|
||||
|
||||
[
|
||||
"catch"
|
||||
"noexcept"
|
||||
"throw"
|
||||
"try"
|
||||
] @keyword.control.exception
|
||||
|
||||
|
||||
[
|
||||
"and"
|
||||
"and_eq"
|
||||
"bitor"
|
||||
"bitand"
|
||||
"not"
|
||||
"not_eq"
|
||||
"or"
|
||||
"or_eq"
|
||||
"xor"
|
||||
"xor_eq"
|
||||
] @keyword.operator
|
||||
|
||||
[
|
||||
"class"
|
||||
"namespace"
|
||||
"typename"
|
||||
] @keyword.storage.type
|
||||
|
||||
[
|
||||
"constexpr"
|
||||
"constinit"
|
||||
"consteval"
|
||||
"explicit"
|
||||
"friend"
|
||||
"mutable"
|
||||
"private"
|
||||
"protected"
|
||||
"public"
|
||||
"override"
|
||||
"template"
|
||||
"virtual"
|
||||
] @keyword.storage.modifier
|
||||
|
||||
; Strings
|
||||
|
||||
(raw_string_literal) @string
|
||||
|
||||
; inherits: c
|
||||
|
|
|
@ -2,58 +2,27 @@
|
|||
(float_literal) @constant.numeric.float
|
||||
(bool_literal) @constant.builtin.boolean
|
||||
|
||||
(global_constant_declaration) @variable
|
||||
(global_variable_declaration) @variable
|
||||
(compound_statement) @variable
|
||||
(const_expression) @function
|
||||
|
||||
(variable_identifier_declaration
|
||||
(identifier) @variable
|
||||
(type_declaration) @type)
|
||||
|
||||
(function_declaration
|
||||
(identifier) @function
|
||||
(function_return_type_declaration
|
||||
(type_declaration) @type))
|
||||
|
||||
(parameter
|
||||
(variable_identifier_declaration
|
||||
(identifier) @variable.parameter
|
||||
(type_declaration) @type))
|
||||
|
||||
(struct_declaration
|
||||
(identifier) @type)
|
||||
|
||||
(struct_declaration
|
||||
(struct_member
|
||||
(variable_identifier_declaration
|
||||
(identifier) @variable.other.member
|
||||
(type_declaration) @type)))
|
||||
|
||||
(type_constructor_or_function_call_expression
|
||||
(type_declaration) @function)
|
||||
|
||||
[
|
||||
"struct"
|
||||
"bitcast"
|
||||
"discard"
|
||||
"enable"
|
||||
"fallthrough"
|
||||
"fn"
|
||||
"let"
|
||||
"private"
|
||||
"read"
|
||||
"read_write"
|
||||
"storage"
|
||||
"type"
|
||||
"uniform"
|
||||
"var"
|
||||
"workgroup"
|
||||
"write"
|
||||
"override"
|
||||
(texel_format)
|
||||
] @keyword
|
||||
|
||||
[
|
||||
"let"
|
||||
"override"
|
||||
"struct"
|
||||
"type"
|
||||
"var"
|
||||
(texel_format)
|
||||
] @keyword.storage.type
|
||||
|
||||
[
|
||||
(access_mode)
|
||||
(address_space)
|
||||
] @keyword.storage.modifier
|
||||
|
||||
"fn" @keyword.function
|
||||
|
||||
"return" @keyword.control.return
|
||||
|
@ -62,13 +31,18 @@
|
|||
|
||||
["(" ")" "[" "]" "{" "}"] @punctuation.bracket
|
||||
|
||||
(type_declaration ["<" ">"] @punctuation.bracket)
|
||||
|
||||
[
|
||||
"break"
|
||||
"continue"
|
||||
"continuing"
|
||||
] @keyword.control
|
||||
|
||||
[
|
||||
"loop"
|
||||
"for"
|
||||
"while"
|
||||
"break"
|
||||
"continue"
|
||||
"continuing"
|
||||
] @keyword.control.repeat
|
||||
|
||||
[
|
||||
|
@ -80,35 +54,64 @@
|
|||
] @keyword.control.conditional
|
||||
|
||||
[
|
||||
"!"
|
||||
"!="
|
||||
"%"
|
||||
"%="
|
||||
"&"
|
||||
"&&"
|
||||
"&="
|
||||
"*"
|
||||
"*="
|
||||
"+"
|
||||
"++"
|
||||
"+="
|
||||
"-"
|
||||
"--"
|
||||
"-="
|
||||
"->"
|
||||
"/"
|
||||
"!"
|
||||
"/="
|
||||
"<"
|
||||
"<<"
|
||||
"<="
|
||||
"="
|
||||
"=="
|
||||
"!="
|
||||
">"
|
||||
">="
|
||||
">>"
|
||||
"<"
|
||||
"<="
|
||||
"<<"
|
||||
"%"
|
||||
"-"
|
||||
"+"
|
||||
"|"
|
||||
"||"
|
||||
"*"
|
||||
"~"
|
||||
"^"
|
||||
"@"
|
||||
"++"
|
||||
"--"
|
||||
"^"
|
||||
"^="
|
||||
"|"
|
||||
"|="
|
||||
"||"
|
||||
"~"
|
||||
] @operator
|
||||
|
||||
(function_declaration
|
||||
(identifier) @function)
|
||||
|
||||
(parameter
|
||||
(variable_identifier_declaration
|
||||
(identifier) @variable.parameter))
|
||||
|
||||
(struct_declaration
|
||||
(identifier) @type)
|
||||
|
||||
(struct_declaration
|
||||
(struct_member
|
||||
(variable_identifier_declaration
|
||||
(identifier) @variable.other.member)))
|
||||
|
||||
(type_constructor_or_function_call_expression
|
||||
(type_declaration (identifier) @function))
|
||||
|
||||
(type_declaration _ @type)
|
||||
|
||||
(attribute
|
||||
(identifier) @attribute)
|
||||
|
||||
(comment) @comment
|
||||
(identifier) @variable
|
||||
|
||||
(ERROR) @error
|
||||
(comment) @comment
|
||||
|
|
Loading…
Reference in a new issue