Update tree-sitter-gleam

This update includes a handful of fixes, a new binary concatenation
operator (already highlighted by the `binary_operator` rule), and a
new `use` language construct. The nodes are backwards compatible but
this update introduces two new nodes for highlighting: `use` and `<-`.
pull/1/head
Michael Davis 2 years ago committed by Blaž Hrastnik
parent cbc72e84d7
commit ee06d4d337

@ -1263,7 +1263,7 @@ language-server = { command = "gleam", args = ["lsp"] }
[[grammar]] [[grammar]]
name = "gleam" name = "gleam"
source = { git = "https://github.com/gleam-lang/tree-sitter-gleam", rev = "d7861b2a4b4d594c58bb4f1be5f1f4ee4c67e5c3" } source = { git = "https://github.com/gleam-lang/tree-sitter-gleam", rev = "d6cbdf3477fcdb0b4d811518a356f9b5cd1795ed" }
[[language]] [[language]]
name = "ron" name = "ron"

@ -80,6 +80,7 @@
"todo" "todo"
"try" "try"
"type" "type"
"use"
] @keyword ] @keyword
; Punctuation ; Punctuation
@ -103,4 +104,5 @@
"->" "->"
".." ".."
"-" "-"
"<-"
] @punctuation.delimiter ] @punctuation.delimiter

Loading…
Cancel
Save