diff options
| author | Christian Clason <c.clason@uni-graz.at> | 2025-12-13 14:22:22 +0100 |
|---|---|---|
| committer | Christian Clason <ch.clason+github@icloud.com> | 2025-12-13 14:28:41 +0100 |
| commit | 74b119812e9f82bccc2f0eca156faff0354362ae (patch) | |
| tree | 7ebde629f3026d4b4142c5af93babb502cba457d | |
| parent | feat(parsers): update fortran, gotmpl, helm, idl, mlir, pkl, query, racket, s... (diff) | |
| download | nvim-treesitter-74b119812e9f82bccc2f0eca156faff0354362ae.tar nvim-treesitter-74b119812e9f82bccc2f0eca156faff0354362ae.tar.gz nvim-treesitter-74b119812e9f82bccc2f0eca156faff0354362ae.tar.bz2 nvim-treesitter-74b119812e9f82bccc2f0eca156faff0354362ae.tar.lz nvim-treesitter-74b119812e9f82bccc2f0eca156faff0354362ae.tar.xz nvim-treesitter-74b119812e9f82bccc2f0eca156faff0354362ae.tar.zst nvim-treesitter-74b119812e9f82bccc2f0eca156faff0354362ae.zip | |
feat(gleam)!: update parser and queries
Breaking change: `(bit_string_*)` renamed to `(bit_array_*)`
| -rw-r--r-- | lua/nvim-treesitter/parsers.lua | 2 | ||||
| -rw-r--r-- | runtime/queries/gleam/highlights.scm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index e3f13fca1..9aaf4c477 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -692,7 +692,7 @@ return { }, gleam = { install_info = { - revision = 'f4d55f3c5b690d4afe8853da892bc290d96deb34', + revision = '0c0c63a07998767b22f0d2655f903611eca6acd0', url = 'https://github.com/gleam-lang/tree-sitter-gleam', }, maintainers = { '@amaanq' }, diff --git a/runtime/queries/gleam/highlights.scm b/runtime/queries/gleam/highlights.scm index f80bda240..f25926f92 100644 --- a/runtime/queries/gleam/highlights.scm +++ b/runtime/queries/gleam/highlights.scm @@ -106,7 +106,7 @@ (string) @string ; Bit Strings -(bit_string_segment) @string.special +(bit_array_segment) @string.special ; Numbers (integer) @number |
