mirror of https://github.com/helix-editor/helix
add languages `r` and `rmarkdown` (#1998)
* add languages `r` and `rmarkdown` * r: fix highlights * rmarkdown: add eof in queries * rmarkdown: update lang-support.md * r: fix highlight query precedencepull/2014/head
parent
d37369c1e0
commit
31c468ab95
@ -0,0 +1,128 @@
|
|||||||
|
; highlights.scm
|
||||||
|
|
||||||
|
|
||||||
|
; Literals
|
||||||
|
|
||||||
|
(integer) @constant.numeric.integer
|
||||||
|
|
||||||
|
(float) @constant.numeric.float
|
||||||
|
|
||||||
|
(complex) @constant.numeric.integer
|
||||||
|
|
||||||
|
(string) @string
|
||||||
|
(string (escape_sequence) @constant.character.escape)
|
||||||
|
|
||||||
|
(comment) @comment
|
||||||
|
|
||||||
|
(formal_parameters (identifier) @variable.parameter)
|
||||||
|
(formal_parameters (default_parameter (identifier) @variable.parameter))
|
||||||
|
|
||||||
|
; Operators
|
||||||
|
[
|
||||||
|
"="
|
||||||
|
"<-"
|
||||||
|
"<<-"
|
||||||
|
"->>"
|
||||||
|
"->"
|
||||||
|
] @operator
|
||||||
|
|
||||||
|
(unary operator: [
|
||||||
|
"-"
|
||||||
|
"+"
|
||||||
|
"!"
|
||||||
|
"~"
|
||||||
|
] @operator)
|
||||||
|
|
||||||
|
(binary operator: [
|
||||||
|
"-"
|
||||||
|
"+"
|
||||||
|
"*"
|
||||||
|
"/"
|
||||||
|
"^"
|
||||||
|
"<"
|
||||||
|
">"
|
||||||
|
"<="
|
||||||
|
">="
|
||||||
|
"=="
|
||||||
|
"!="
|
||||||
|
"||"
|
||||||
|
"|"
|
||||||
|
"&&"
|
||||||
|
"&"
|
||||||
|
":"
|
||||||
|
"~"
|
||||||
|
] @operator)
|
||||||
|
|
||||||
|
[
|
||||||
|
"|>"
|
||||||
|
(special)
|
||||||
|
] @operator
|
||||||
|
|
||||||
|
(lambda_function "\\" @operator)
|
||||||
|
|
||||||
|
[
|
||||||
|
"("
|
||||||
|
")"
|
||||||
|
"["
|
||||||
|
"]"
|
||||||
|
"{"
|
||||||
|
"}"
|
||||||
|
] @punctuation.bracket
|
||||||
|
|
||||||
|
(dollar "$" @operator)
|
||||||
|
|
||||||
|
(subset2
|
||||||
|
[
|
||||||
|
"[["
|
||||||
|
"]]"
|
||||||
|
] @punctuation.bracket)
|
||||||
|
|
||||||
|
[
|
||||||
|
"in"
|
||||||
|
(dots)
|
||||||
|
(break)
|
||||||
|
(next)
|
||||||
|
(inf)
|
||||||
|
] @keyword
|
||||||
|
|
||||||
|
[
|
||||||
|
(nan)
|
||||||
|
(na)
|
||||||
|
(null)
|
||||||
|
] @type.builtin
|
||||||
|
|
||||||
|
[
|
||||||
|
"if"
|
||||||
|
"else"
|
||||||
|
"switch"
|
||||||
|
] @keyword.control.conditional
|
||||||
|
|
||||||
|
[
|
||||||
|
"while"
|
||||||
|
"repeat"
|
||||||
|
"for"
|
||||||
|
] @keyword.control.repeat
|
||||||
|
|
||||||
|
[
|
||||||
|
(true)
|
||||||
|
(false)
|
||||||
|
] @constant.builtin.boolean
|
||||||
|
|
||||||
|
"function" @keyword.function
|
||||||
|
|
||||||
|
(call function: (identifier) @function)
|
||||||
|
(default_argument name: (identifier) @variable.parameter)
|
||||||
|
|
||||||
|
|
||||||
|
(namespace_get namespace: (identifier) @namespace
|
||||||
|
"::" @operator)
|
||||||
|
(namespace_get_internal namespace: (identifier) @namespace
|
||||||
|
":::" @operator)
|
||||||
|
|
||||||
|
(namespace_get function: (identifier) @function.method)
|
||||||
|
(namespace_get_internal function: (identifier) @function.method)
|
||||||
|
|
||||||
|
(identifier) @variable
|
||||||
|
|
||||||
|
; Error
|
||||||
|
(ERROR) @error
|
@ -0,0 +1,11 @@
|
|||||||
|
; locals.scm
|
||||||
|
|
||||||
|
(function_definition) @local.scope
|
||||||
|
|
||||||
|
(formal_parameters (identifier) @local.definition)
|
||||||
|
|
||||||
|
(left_assignment name: (identifier) @local.definition)
|
||||||
|
(equals_assignment name: (identifier) @local.definition)
|
||||||
|
(right_assignment name: (identifier) @local.definition)
|
||||||
|
|
||||||
|
(identifier) @local.reference
|
@ -0,0 +1 @@
|
|||||||
|
; inherits: markdown
|
@ -0,0 +1 @@
|
|||||||
|
; inherits: markdown
|
@ -0,0 +1 @@
|
|||||||
|
; inherits: markdown
|
Loading…
Reference in New Issue