-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add Elm language support * Fix docs gen * Updates based on PR feedback
- Loading branch information
Jared Ramirez
authored
Jan 20, 2022
1 parent
440d4ae
commit b2c8aa1
Showing
8 changed files
with
137 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule tree-sitter-elm
added at
bd50cc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
; Keywords | ||
[ | ||
"if" | ||
"then" | ||
"else" | ||
"let" | ||
"in" | ||
] @keyword.control | ||
(case) @keyword.control | ||
(of) @keyword.control | ||
|
||
(colon) @keyword.operator | ||
(backslash) @keyword | ||
(as) @keyword | ||
(port) @keyword | ||
(exposing) @keyword | ||
(alias) @keyword | ||
(infix) @keyword | ||
|
||
(arrow) @keyword.operator | ||
(dot) @keyword.operator | ||
|
||
(port) @keyword | ||
|
||
(type_annotation(lower_case_identifier) @function) | ||
(port_annotation(lower_case_identifier) @function) | ||
(file (value_declaration (function_declaration_left(lower_case_identifier) @function))) | ||
|
||
(field name: (lower_case_identifier) @attribute) | ||
(field_access_expr(lower_case_identifier) @attribute) | ||
|
||
(operator_identifier) @keyword.operator | ||
(eq) @keyword.operator.assignment | ||
|
||
[ | ||
"(" | ||
")" | ||
"[" | ||
"]" | ||
"{" | ||
"}" | ||
] @punctuation.bracket | ||
|
||
"|" @keyword | ||
"," @punctuation.delimiter | ||
|
||
[ | ||
"|>" | ||
] @keyword | ||
|
||
|
||
(import) @keyword.contol.import | ||
(module) @keyword.other | ||
|
||
(number_constant_expr) @constant.numeric | ||
|
||
(type) @type | ||
|
||
(type_declaration(upper_case_identifier) @type) | ||
(type_ref) @type | ||
(type_alias_declaration name: (upper_case_identifier) @type) | ||
|
||
(union_pattern constructor: (upper_case_qid (upper_case_identifier) @label (dot) (upper_case_identifier) @variable.other.member)) | ||
(union_pattern constructor: (upper_case_qid (upper_case_identifier) @variable.other.member)) | ||
|
||
(union_variant(upper_case_identifier) @variable.other.member) | ||
(value_expr name: (value_qid (upper_case_identifier) @label)) | ||
(value_expr (upper_case_qid (upper_case_identifier) @label (dot) (upper_case_identifier) @variable.other.member)) | ||
(value_expr(upper_case_qid(upper_case_identifier)) @variable.other.member) | ||
|
||
; comments | ||
(line_comment) @comment | ||
(block_comment) @comment | ||
|
||
; strings | ||
(string_escape) @constant.character.escape | ||
|
||
(open_quote) @string | ||
(close_quote) @string | ||
(regular_string_part) @string | ||
|
||
(open_char) @constant.character | ||
(close_char) @constant.character |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
; Parse glsl where defined | ||
|
||
((glsl_content) @injection.content | ||
(#set! injection.language "glsl")) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
(value_declaration) @local.scope | ||
(type_alias_declaration) @local.scope | ||
(type_declaration) @local.scope | ||
(type_annotation) @local.scope | ||
(port_annotation) @local.scope | ||
(infix_declaration) @local.scope | ||
(let_in_expr) @local.scope | ||
|
||
(function_declaration_left (lower_pattern (lower_case_identifier)) @local.definition) | ||
(function_declaration_left (lower_case_identifier) @local.definition) | ||
|
||
(value_expr(value_qid(upper_case_identifier)) @local.reference) | ||
(value_expr(value_qid(lower_case_identifier)) @local.reference) | ||
(type_ref (upper_case_qid) @local.reference) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
(value_declaration (function_declaration_left (lower_case_identifier) @name)) @definition.function | ||
|
||
(function_call_expr (value_expr (value_qid) @name)) @reference.function | ||
(exposed_value (lower_case_identifier) @name) @reference.function | ||
(type_annotation ((lower_case_identifier) @name) (colon)) @reference.function | ||
|
||
(type_declaration ((upper_case_identifier) @name) ) @definition.type | ||
|
||
(type_ref (upper_case_qid (upper_case_identifier) @name)) @reference.type | ||
(exposed_type (upper_case_identifier) @name) @reference.type | ||
|
||
(type_declaration (union_variant (upper_case_identifier) @name)) @definition.union | ||
|
||
(value_expr (upper_case_qid (upper_case_identifier) @name)) @reference.union | ||
|
||
|
||
(module_declaration | ||
(upper_case_qid (upper_case_identifier)) @name | ||
) @definition.module |