mirror of https://github.com/helix-editor/helix
Replace MATLAB grammar (#7388)
parent
842518ccb7
commit
2c5288dafb
@ -0,0 +1,41 @@
|
||||
(function_definition
|
||||
(block (_) @context.end)
|
||||
) @context
|
||||
|
||||
(while_statement
|
||||
(block (_) @context.end)
|
||||
) @context
|
||||
|
||||
(for_statement
|
||||
(block (_) @context.end)
|
||||
) @context
|
||||
|
||||
(if_statement
|
||||
(block (_) @context.end)
|
||||
) @context
|
||||
|
||||
(elseif_clause
|
||||
(block (_) @context.end)
|
||||
) @context
|
||||
|
||||
(else_clause
|
||||
(block (_) @context.end)
|
||||
) @context
|
||||
|
||||
(switch_statement) @context
|
||||
|
||||
(case_clause
|
||||
(block (_) @context.end)
|
||||
) @context
|
||||
|
||||
(otherwise_clause
|
||||
(block (_) @context.end)
|
||||
) @context
|
||||
|
||||
(try_statement
|
||||
"try"
|
||||
(block (_) @context.end) @context
|
||||
"end")
|
||||
(catch_clause
|
||||
"catch"
|
||||
(block (_) @context.end) @context)
|
@ -0,0 +1,11 @@
|
||||
[(if_statement)
|
||||
(for_statement)
|
||||
(while_statement)
|
||||
(switch_statement)
|
||||
(try_statement)
|
||||
(function_definition)
|
||||
(class_definition)
|
||||
(enumeration)
|
||||
(events)
|
||||
(methods)
|
||||
(properties)] @fold
|
@ -1,97 +1,127 @@
|
||||
; highlights.scm
|
||||
; Constants
|
||||
|
||||
function_keyword: (function_keyword) @keyword.function
|
||||
(events (identifier) @constant)
|
||||
(attribute (identifier) @constant)
|
||||
|
||||
(function_definition
|
||||
function_name: (identifier) @function
|
||||
(end) @function)
|
||||
"~" @constant.builtin
|
||||
|
||||
(parameter_list (identifier) @variable.parameter)
|
||||
; Fields/Properties
|
||||
|
||||
[
|
||||
"if"
|
||||
"elseif"
|
||||
"else"
|
||||
"switch"
|
||||
"case"
|
||||
"otherwise"
|
||||
] @keyword.control.conditional
|
||||
(superclass "." (identifier) @variable.other.member)
|
||||
(property_name "." (identifier) @variable.other.member)
|
||||
(property name: (identifier) @variable.other.member)
|
||||
|
||||
(if_statement (end) @keyword.control.conditional)
|
||||
(switch_statement (end) @keyword.control.conditional)
|
||||
; Types
|
||||
|
||||
["for" "while"] @keyword.control.repeat
|
||||
(for_statement (end) @keyword.control.repeat)
|
||||
(while_statement (end) @keyword.control.repeat)
|
||||
(class_definition name: (identifier) @keyword.storage.type)
|
||||
(attributes (identifier) @constant)
|
||||
(enum . (identifier) @type.enum.variant)
|
||||
|
||||
["try" "catch"] @keyword.control.exception
|
||||
(try_statement (end) @keyword.control.exception)
|
||||
; Functions
|
||||
|
||||
(function_definition end: (end) @keyword)
|
||||
(function_definition
|
||||
"function" @keyword.function
|
||||
name: (identifier) @function
|
||||
[ "end" "endfunction" ]? @keyword.function)
|
||||
|
||||
["return" "break" "continue"] @keyword.return
|
||||
(function_signature name: (identifier) @function)
|
||||
(function_call name: (identifier) @function)
|
||||
(handle_operator (identifier) @function)
|
||||
(validation_functions (identifier) @function)
|
||||
(command (command_name) @function.macro)
|
||||
(command_argument) @string
|
||||
(return_statement) @keyword.control.return
|
||||
|
||||
(
|
||||
(identifier) @constant.builtin
|
||||
(#any-of? @constant.builtin "true" "false")
|
||||
)
|
||||
; Assignments
|
||||
|
||||
(
|
||||
(identifier) @constant.builtin
|
||||
(#eq? @constant.builtin "end")
|
||||
)
|
||||
(assignment left: (_) @variable)
|
||||
(multioutput_variable (_) @variable)
|
||||
|
||||
;; Punctuations
|
||||
; Parameters
|
||||
|
||||
[";" ","] @punctuation.special
|
||||
(argument_list "," @punctuation.delimiter)
|
||||
(vector_definition ["," ";"] @punctuation.delimiter)
|
||||
(cell_definition ["," ";"] @punctuation.delimiter)
|
||||
":" @punctuation.delimiter
|
||||
(parameter_list "," @punctuation.delimiter)
|
||||
(return_value "," @punctuation.delimiter)
|
||||
(function_arguments (identifier) @variable.parameter)
|
||||
|
||||
; ;; Brackets
|
||||
; Operators
|
||||
|
||||
[
|
||||
"("
|
||||
")"
|
||||
"["
|
||||
"]"
|
||||
"{"
|
||||
"}"
|
||||
] @punctuation.bracket
|
||||
|
||||
;; Operators
|
||||
"=" @operator
|
||||
(operation [ ">"
|
||||
"<"
|
||||
"=="
|
||||
"<="
|
||||
">="
|
||||
"=<"
|
||||
"=>"
|
||||
"~="
|
||||
"*"
|
||||
".*"
|
||||
"/"
|
||||
"\\"
|
||||
"./"
|
||||
"^"
|
||||
".^"
|
||||
"+"] @operator)
|
||||
|
||||
;; boolean operator
|
||||
[
|
||||
"&&"
|
||||
"||"
|
||||
"+"
|
||||
".+"
|
||||
"-"
|
||||
".*"
|
||||
"*"
|
||||
".*"
|
||||
"/"
|
||||
"./"
|
||||
"\\"
|
||||
".\\"
|
||||
"^"
|
||||
".^"
|
||||
"'"
|
||||
".'"
|
||||
"|"
|
||||
"&"
|
||||
"?"
|
||||
"@"
|
||||
"<"
|
||||
"<="
|
||||
">"
|
||||
">="
|
||||
"=="
|
||||
"~="
|
||||
"="
|
||||
"&&"
|
||||
"||"
|
||||
":"
|
||||
] @operator
|
||||
|
||||
;; Number
|
||||
(number) @constant.numeric
|
||||
; Conditionals
|
||||
|
||||
(if_statement [ "if" "end" ] @keyword.control.conditional)
|
||||
(elseif_clause "elseif" @keyword.control.conditional)
|
||||
(else_clause "else" @keyword.control.conditional)
|
||||
(switch_statement [ "switch" "end" ] @keyword.control.conditional)
|
||||
(case_clause "case" @keyword.control.conditional)
|
||||
(otherwise_clause "otherwise" @keyword.control.conditional)
|
||||
(break_statement) @keyword.control.conditional
|
||||
|
||||
; Repeats
|
||||
|
||||
(for_statement [ "for" "parfor" "end" ] @keyword.control.repeat)
|
||||
(while_statement [ "while" "end" ] @keyword.control.repeat)
|
||||
(continue_statement) @keyword.control.repeat
|
||||
|
||||
; Exceptions
|
||||
|
||||
;; String
|
||||
(try_statement [ "try" "end" ] @keyword.control.exception)
|
||||
(catch_clause "catch" @keyword.control.exception)
|
||||
|
||||
; Punctuation
|
||||
|
||||
[ ";" "," "." ] @punctuation.delimiter
|
||||
[ "(" ")" "[" "]" "{" "}" ] @punctuation.bracket
|
||||
|
||||
; Literals
|
||||
|
||||
(escape_sequence) @constant.character.escape
|
||||
(formatting_sequence) @constant.character.escape
|
||||
(string) @string
|
||||
(number) @constant.numeric.float
|
||||
(boolean) @constant.builtin.boolean
|
||||
|
||||
;; Comment
|
||||
(comment) @comment
|
||||
; Comments
|
||||
|
||||
[ (comment) (line_continuation) ] @comment.line
|
||||
|
||||
; Keywords
|
||||
|
||||
"classdef" @keyword.storage.type
|
||||
[
|
||||
"arguments"
|
||||
"end"
|
||||
"enumeration"
|
||||
"events"
|
||||
"global"
|
||||
"methods"
|
||||
"persistent"
|
||||
"properties"
|
||||
] @keyword
|
||||
|
@ -0,0 +1,23 @@
|
||||
[
|
||||
(if_statement)
|
||||
(for_statement)
|
||||
(while_statement)
|
||||
(switch_statement)
|
||||
(try_statement)
|
||||
(function_definition)
|
||||
(class_definition)
|
||||
(enumeration)
|
||||
(events)
|
||||
(methods)
|
||||
(properties)
|
||||
] @indent
|
||||
|
||||
[
|
||||
(elseif_clause)
|
||||
(else_clause)
|
||||
(case_clause)
|
||||
(otherwise_clause)
|
||||
(catch_clause)
|
||||
] @indent @extend
|
||||
|
||||
[ "end" ] @outdent
|
@ -0,0 +1,2 @@
|
||||
((comment) @injection.content
|
||||
(#set! injection.language "comment"))
|
@ -0,0 +1,19 @@
|
||||
(function_definition name: (identifier) @local.definition ?) @local.scope
|
||||
(function_arguments (identifier)* @local.definition)
|
||||
|
||||
(lambda (arguments (identifier) @local.definition)) @local.scope
|
||||
|
||||
(assignment left: ((function_call
|
||||
name: (identifier) @local.definition)))
|
||||
(assignment left: ((field_expression . [(function_call
|
||||
name: (identifier) @local.definition)
|
||||
(identifier) @local.definition])))
|
||||
(assignment left: (_) @local.definition)
|
||||
(assignment (multioutput_variable (_) @local.definition))
|
||||
|
||||
(iterator . (identifier) @local.definition)
|
||||
(global_operator (identifier) @local.definition)
|
||||
(persistent_operator (identifier) @local.definition)
|
||||
(catch_clause (identifier) @local.definition)
|
||||
|
||||
(identifier) @local.reference
|
@ -0,0 +1,9 @@
|
||||
(arguments ((_) @parameter.inside . ","? @parameter.around) @parameter.around)
|
||||
(function_arguments ((_) @parameter.inside . ","? @parameter.around) @parameter.around)
|
||||
|
||||
(lambda expression: (_) @function.inside) @function.around
|
||||
(function_definition (block) @function.inside) @function.around
|
||||
|
||||
(class_definition) @class.inside @class.around
|
||||
|
||||
(comment) @comment.inside @comment.around
|
Loading…
Reference in New Issue