feat(lang): Update nickel to include "rec" keyword (#2320)

This commit is contained in:
Erin van der Veen 2022-04-29 14:34:15 +02:00 committed by GitHub
parent 22ae1b92a6
commit 21487d13fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -424,7 +424,7 @@ indent = { tab-width = 2, unit = " " }
[[grammar]]
name = "nickel"
source = { git = "https://github.com/nickel-lang/tree-sitter-nickel", rev = "85348774ccf7624fac72703b2264d18b6f572be6" }
source = { git = "https://github.com/nickel-lang/tree-sitter-nickel", rev = "c4dd1420b6cfeb6103d38eb1ce5195eb81197edc" }
[[language]]
name = "nix"

View File

@ -22,6 +22,7 @@
(record_operand (atom (ident) @variable))
(let_expr
"let" @keyword
"rec"? @keyword
pat: (pattern
(ident) @variable
)