diff options
| author | Christian Clason <c.clason@uni-graz.at> | 2024-07-07 17:29:49 +0200 |
|---|---|---|
| committer | Christian Clason <c.clason@uni-graz.at> | 2024-07-07 17:29:49 +0200 |
| commit | b32fb412847e32870b6cc2e3a762a364e1a7863b (patch) | |
| tree | 059b2b6c802c9e0e713e74e268a9026eb86c2311 /lua | |
| parent | feat: add goctl parser and queries (diff) | |
| download | nvim-treesitter-b32fb412847e32870b6cc2e3a762a364e1a7863b.tar nvim-treesitter-b32fb412847e32870b6cc2e3a762a364e1a7863b.tar.gz nvim-treesitter-b32fb412847e32870b6cc2e3a762a364e1a7863b.tar.bz2 nvim-treesitter-b32fb412847e32870b6cc2e3a762a364e1a7863b.tar.lz nvim-treesitter-b32fb412847e32870b6cc2e3a762a364e1a7863b.tar.xz nvim-treesitter-b32fb412847e32870b6cc2e3a762a364e1a7863b.tar.zst nvim-treesitter-b32fb412847e32870b6cc2e3a762a364e1a7863b.zip | |
fix(parsers): drop .git suffix from URLs
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/nvim-treesitter/parsers.lua | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index 65d9313ae..c2d26acf9 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -203,7 +203,7 @@ list.bitbake = { list.blueprint = { install_info = { - url = "https://gitlab.com/gabmus/tree-sitter-blueprint.git", + url = "https://gitlab.com/gabmus/tree-sitter-blueprint", files = { "src/parser.c" }, }, maintainers = { "@gabmus" }, @@ -638,7 +638,7 @@ list.func = { list.fusion = { install_info = { - url = "https://gitlab.com/jirgn/tree-sitter-fusion.git", + url = "https://gitlab.com/jirgn/tree-sitter-fusion", files = { "src/parser.c", "src/scanner.c" }, }, maintainers = { "@jirgn" }, @@ -759,7 +759,7 @@ list.go = { list.goctl = { install_info = { - url = "https://github.com/chaozwn/tree-sitter-goctl.git", + url = "https://github.com/chaozwn/tree-sitter-goctl", files = { "src/parser.c" }, }, maintainers = { "@chaozwn" }, @@ -1066,7 +1066,7 @@ list.json5 = { list.jsonc = { install_info = { - url = "https://gitlab.com/WhyNotHugo/tree-sitter-jsonc.git", + url = "https://gitlab.com/WhyNotHugo/tree-sitter-jsonc", files = { "src/parser.c" }, generate_requires_npm = true, }, @@ -1461,7 +1461,7 @@ list.org = { list.pascal = { install_info = { - url = "https://github.com/Isopod/tree-sitter-pascal.git", + url = "https://github.com/Isopod/tree-sitter-pascal", files = { "src/parser.c" }, }, maintainers = { "@Isopod" }, @@ -2092,7 +2092,7 @@ list.systemverilog = { list.t32 = { install_info = { - url = "https://gitlab.com/xasc/tree-sitter-t32.git", + url = "https://gitlab.com/xasc/tree-sitter-t32", files = { "src/parser.c", "src/scanner.c" }, }, filetype = "trace32", @@ -2185,7 +2185,7 @@ list.tmux = { list.todotxt = { install_info = { - url = "https://github.com/arnarg/tree-sitter-todotxt.git", + url = "https://github.com/arnarg/tree-sitter-todotxt", files = { "src/parser.c" }, }, maintainers = { "@arnarg" }, |
