just: bump grammar support to Just 1.37.0 (#12141)

This commit is contained in:
Poliorcetics 2024-12-02 15:45:46 +01:00 committed by GitHub
parent b1bdbc6789
commit 83fe23ce75
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 10 additions and 1 deletions

View File

@ -3168,7 +3168,7 @@ indent = { tab-width = 4, unit = " " }
[[grammar]]
name = "just"
source = { git = "https://github.com/poliorcetics/tree-sitter-just", rev = "6e28fa6cba511c694247cd802d1c3b14f8d34dbb" }
source = { git = "https://github.com/poliorcetics/tree-sitter-just", rev = "180bb15d64c63585c4f65c551350048f21987bcb" }
[[language]]
name = "gn"

View File

@ -3,6 +3,7 @@
[
"export"
"import"
"unexport"
] @keyword.control.import
"mod" @keyword.directive
@ -18,6 +19,11 @@
"else"
] @keyword.control.conditional
[
"&&"
"||"
] @operator
; Variables
(value
@ -31,6 +37,9 @@
(shell_variable_name) @variable
(unexport
name: (identifier) @variable)
; Functions
(recipe