Skip to content

Commit

Permalink
Fix C++ syntax highlighting, and improve C & WGSL highlighting (helix…
Browse files Browse the repository at this point in the history
  • Loading branch information
Chickenkeeper authored and Shekhinah Memmel committed Dec 11, 2022
1 parent 7298f73 commit 702b6cc
Show file tree
Hide file tree
Showing 4 changed files with 274 additions and 175 deletions.
4 changes: 2 additions & 2 deletions languages.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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"
Expand Down
162 changes: 105 additions & 57 deletions runtime/queries/c/highlights.scm
Original file line number Diff line number Diff line change
@@ -1,65 +1,104 @@
(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

[
"#define"
"#elif"
"#else"
"#endif"
"#if"
"#ifdef"
"#ifndef"
"#include"
(preproc_directive)
"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"
"#endif"
"#if"
"#ifdef"
"#ifndef"
"#include"
(preproc_directive)
] @keyword.directive

"--" @operator
"-" @operator
"-=" @operator
"->" @operator
"=" @operator
"!=" @operator
"*" @operator
"&" @operator
"&&" @operator
"+" @operator
"++" @operator
"+=" @operator
"<" @operator
"==" @operator
">" @operator
"||" @operator
">=" @operator
"<=" @operator

"." @punctuation.delimiter
";" @punctuation.delimiter
[
"+"
"-"
"*"
"/"
"++"
"--"
"%"
"=="
"!="
">"
"<"
">="
"<="
"&&"
"||"
"!"
"&"
"|"
"^"
"~"
"<<"
">>"
"="
"+="
"-="
"*="
"/="
"%="
"<<="
">>="
"&="
"^="
"|="
"?"
] @operator

(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
Expand All @@ -73,19 +112,28 @@
(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
(#match? @constant "^[A-Z][A-Z\\d_]*$"))
(#match? @constant "^[A-Z][A-Z\\d_]*$"))

(identifier) @variable

Expand Down
108 changes: 78 additions & 30 deletions runtime/queries/cpp/highlights.scm
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
; inherits: c

; Functions

(call_expression
Expand All @@ -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
Loading

0 comments on commit 702b6cc

Please sign in to comment.