mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-10 07:20:06 -04:00
feat!: drop modules, general refactor and cleanup
This commit is contained in:
parent
c13e28f894
commit
2c8f2f2fad
829 changed files with 4905 additions and 8010 deletions
154
runtime/queries/matlab/highlights.scm
Normal file
154
runtime/queries/matlab/highlights.scm
Normal file
|
|
@ -0,0 +1,154 @@
|
|||
; Includes
|
||||
|
||||
((command_name) @include
|
||||
(#eq? @include "import"))
|
||||
|
||||
; Keywords
|
||||
|
||||
[
|
||||
"arguments"
|
||||
"classdef"
|
||||
"end"
|
||||
"enumeration"
|
||||
"events"
|
||||
"global"
|
||||
"methods"
|
||||
"persistent"
|
||||
"properties"
|
||||
] @keyword
|
||||
|
||||
; Conditionals
|
||||
|
||||
(if_statement [ "if" "end" ] @conditional)
|
||||
(elseif_clause "elseif" @conditional)
|
||||
(else_clause "else" @conditional)
|
||||
(switch_statement [ "switch" "end" ] @conditional)
|
||||
(case_clause "case" @conditional)
|
||||
(otherwise_clause "otherwise" @conditional)
|
||||
(break_statement) @conditional
|
||||
|
||||
; Repeats
|
||||
|
||||
(for_statement [ "for" "parfor" "end" ] @repeat)
|
||||
(while_statement [ "while" "end" ] @repeat)
|
||||
(continue_statement) @repeat
|
||||
|
||||
; Exceptions
|
||||
|
||||
(try_statement [ "try" "end" ] @exception)
|
||||
(catch_clause "catch" @exception)
|
||||
|
||||
; Variables
|
||||
|
||||
(identifier) @variable
|
||||
|
||||
; Constants
|
||||
|
||||
(events (identifier) @constant)
|
||||
(attribute (identifier) @constant)
|
||||
|
||||
"~" @constant.builtin
|
||||
|
||||
; Fields/Properties
|
||||
|
||||
(field_expression field: (identifier) @field)
|
||||
|
||||
(superclass "." (identifier) @property)
|
||||
|
||||
(property_name "." (identifier) @property)
|
||||
|
||||
(property name: (identifier) @property)
|
||||
|
||||
; Types
|
||||
|
||||
(class_definition name: (identifier) @type)
|
||||
|
||||
(attributes (identifier) @constant)
|
||||
|
||||
(enum . (identifier) @type)
|
||||
|
||||
((identifier) @type
|
||||
(#lua-match? @type "^_*[A-Z][a-zA-Z0-9_]+$"))
|
||||
|
||||
; Functions
|
||||
|
||||
(function_definition
|
||||
"function" @keyword.function
|
||||
name: (identifier) @function
|
||||
[ "end" "endfunction" ]? @keyword.function)
|
||||
|
||||
(function_signature name: (identifier) @function)
|
||||
|
||||
(function_call
|
||||
name: (identifier) @function.call)
|
||||
|
||||
(handle_operator (identifier) @function)
|
||||
|
||||
(validation_functions (identifier) @function)
|
||||
|
||||
(command (command_name) @function.call)
|
||||
(command_argument) @parameter
|
||||
|
||||
(return_statement) @keyword.return
|
||||
|
||||
; Parameters
|
||||
|
||||
(function_arguments (identifier) @parameter)
|
||||
|
||||
; Punctuation
|
||||
|
||||
[ ";" "," "." ] @punctuation.delimiter
|
||||
|
||||
[ "(" ")" "[" "]" "{" "}" ] @punctuation.bracket
|
||||
|
||||
; Operators
|
||||
|
||||
[
|
||||
"+"
|
||||
".+"
|
||||
"-"
|
||||
".*"
|
||||
"*"
|
||||
".*"
|
||||
"/"
|
||||
"./"
|
||||
"\\"
|
||||
".\\"
|
||||
"^"
|
||||
".^"
|
||||
"'"
|
||||
".'"
|
||||
"|"
|
||||
"&"
|
||||
"?"
|
||||
"@"
|
||||
"<"
|
||||
"<="
|
||||
">"
|
||||
">="
|
||||
"=="
|
||||
"~="
|
||||
"="
|
||||
"&&"
|
||||
"||"
|
||||
":"
|
||||
] @operator
|
||||
|
||||
; Literals
|
||||
|
||||
(string) @string
|
||||
|
||||
(escape_sequence) @string.escape
|
||||
(formatting_sequence) @string.special
|
||||
|
||||
(number) @number
|
||||
|
||||
(boolean) @boolean
|
||||
|
||||
; Comments
|
||||
|
||||
[ (comment) (line_continuation) ] @comment @spell
|
||||
|
||||
; Errors
|
||||
|
||||
(ERROR) @error
|
||||
Loading…
Add table
Add a link
Reference in a new issue