forked from helix-editor/helix
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add standalone language support for
just
(helix-editor#6453)
Co-authored-by: Michael Davis <[email protected]>
- Loading branch information
1 parent
524852b
commit edaceec
Showing
8 changed files
with
130 additions
and
2 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
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 @@ | ||
(body) @fold | ||
(recipe) @fold | ||
(interpolation) @fold | ||
(item (_) @fold) |
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,33 @@ | ||
(assignment (NAME) @variable) | ||
(alias (NAME) @variable) | ||
(value (NAME) @variable) | ||
(parameter (NAME) @variable) | ||
(setting (NAME) @keyword) | ||
(setting "shell" @keyword) | ||
|
||
(call (NAME) @function) | ||
(dependency (NAME) @function) | ||
(depcall (NAME) @function) | ||
(recipeheader (NAME) @function) | ||
|
||
(depcall (expression) @variable.parameter) | ||
(parameter) @variable.parameter | ||
(variadic_parameters) @variable.parameter | ||
|
||
["if" "else"] @keyword.control.conditional | ||
|
||
(string) @string | ||
|
||
(boolean ["true" "false"]) @constant.builtin.boolean | ||
|
||
(comment) @comment | ||
|
||
; (interpolation) @string | ||
|
||
(shebang interpreter:(TEXT) @keyword ) @comment | ||
|
||
["export" "alias" "set"] @keyword | ||
|
||
["@" "==" "!=" "+" ":="] @operator | ||
|
||
[ "(" ")" "[" "]" "{{" "}}" "{" "}"] @punctuation.bracket |
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,3 @@ | ||
[ | ||
(recipe_body) | ||
] @indent |
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,16 @@ | ||
((comment) @injection.content | ||
(#set! injection.language "comment")) | ||
|
||
(shebang_recipe | ||
(shebang | ||
interpreter:(TEXT) @injection.language) | ||
(shebang_body) @injection.content | ||
) | ||
|
||
(source_file | ||
(item (setting lang:(NAME) @injection.language)) | ||
(item (recipe (body (recipe_body) @injection.content))) | ||
) | ||
|
||
; ((interpolation (expression) @injection.content) | ||
; (#set! injection.language "just")) |
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,10 @@ | ||
(assignment (NAME) @local.definition) | ||
(alias left:(NAME) @local.definition) | ||
(alias right:(NAME) @local.reference) | ||
(value (NAME) @local.reference) | ||
(parameter (NAME) @local.definition) | ||
|
||
(call (NAME) @local.reference) | ||
(dependency (NAME) @local.reference) | ||
(depcall (NAME) @local.reference) | ||
(recipeheader (NAME) @local.definition) |
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,48 @@ | ||
(body) @function.inside | ||
(recipe) @function.around | ||
(expression | ||
if:(expression) @function.inside | ||
) | ||
(expression | ||
else:(expression) @function.inside | ||
) | ||
(interpolation (expression) @function.inside) @function.around | ||
(settinglist (stringlist) @function.inside) @function.around | ||
|
||
(call (NAME) @class.inside) @class.around | ||
(dependency (NAME) @class.inside) @class.around | ||
(depcall (NAME) @class.inside) | ||
|
||
(dependency) @parameter.around | ||
(depcall) @parameter.inside | ||
(depcall (expression) @parameter.inside) | ||
|
||
(stringlist | ||
(string) @parameter.inside | ||
. ","? @_end | ||
; Commented out since we don't support `#make-range!` at the moment | ||
; (#make-range! "parameter.around" @parameter.inside @_end) | ||
) | ||
(parameters | ||
[(parameter) | ||
(variadic_parameters)] @parameter.inside | ||
. " "? @_end | ||
; Commented out since we don't support `#make-range!` at the moment | ||
; (#make-range! "parameter.around" @parameter.inside @_end) | ||
) | ||
|
||
(expression | ||
(condition) @function.inside | ||
) @function.around | ||
(expression | ||
if:(expression) @function.inside | ||
) | ||
(expression | ||
else:(expression) @function.inside | ||
) | ||
|
||
(item [(alias) (assignment) (export) (setting)]) @class.around | ||
(recipeheader) @class.around | ||
(line) @class.around | ||
|
||
(comment) @comment.around |