diff options
| author | Tobias Hunger <tobias.hunger@gmail.com> | 2024-02-09 14:46:57 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-09 13:46:57 +0000 |
| commit | 0f3183dda8df688a77223b9762475dee5b27271f (patch) | |
| tree | fede30d0f59f5fa4c7ef65e16d8c495d47e0ad28 /lua | |
| parent | Update parsers: ruby (diff) | |
| download | nvim-treesitter-0f3183dda8df688a77223b9762475dee5b27271f.tar nvim-treesitter-0f3183dda8df688a77223b9762475dee5b27271f.tar.gz nvim-treesitter-0f3183dda8df688a77223b9762475dee5b27271f.tar.bz2 nvim-treesitter-0f3183dda8df688a77223b9762475dee5b27271f.tar.lz nvim-treesitter-0f3183dda8df688a77223b9762475dee5b27271f.tar.xz nvim-treesitter-0f3183dda8df688a77223b9762475dee5b27271f.tar.zst nvim-treesitter-0f3183dda8df688a77223b9762475dee5b27271f.zip | |
feat(slint)!: change to the official parser (#6027)
This change replaces the slint parser written and maintained by @jrmoulton
with the official one hosted in the slint-ui organization on github.
A huge thank you to @jrmoulton for all his work on the tree-sitter
parser!
---------
Co-authored-by: jrmoulton <jaredmoulton3@gmail.com>
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/nvim-treesitter/parsers.lua | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index 45bf2b784..b1907d255 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -1734,11 +1734,10 @@ list.slang = { list.slint = { install_info = { - url = "https://github.com/jrmoulton/tree-sitter-slint", + url = "https://github.com/slint-ui/tree-sitter-slint", files = { "src/parser.c" }, }, - maintainers = { "@jrmoulton" }, - experimental = true, + maintainers = { "@hunger" }, } list.smali = { |
