diff options
| author | Christian Clason <c.clason@uni-graz.at> | 2022-01-18 22:15:26 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-18 22:15:26 +0100 |
| commit | c80715f883b8c7963782973b23297c5dec7924be (patch) | |
| tree | 3ae4ea4499db6824abd65be4b4f2931a6b8a2864 /lua | |
| parent | chore: remove swift tests for now (cause CI failure) (diff) | |
| download | nvim-treesitter-c80715f883b8c7963782973b23297c5dec7924be.tar nvim-treesitter-c80715f883b8c7963782973b23297c5dec7924be.tar.gz nvim-treesitter-c80715f883b8c7963782973b23297c5dec7924be.tar.bz2 nvim-treesitter-c80715f883b8c7963782973b23297c5dec7924be.tar.lz nvim-treesitter-c80715f883b8c7963782973b23297c5dec7924be.tar.xz nvim-treesitter-c80715f883b8c7963782973b23297c5dec7924be.tar.zst nvim-treesitter-c80715f883b8c7963782973b23297c5dec7924be.zip | |
feat(lua)!: switch from our fork to MunifTanjim's (#2272)
also take queries from https://github.com/MunifTanjim/nvim-treesitter-lua/tree/main/queries/lua
BREAKING CHANGE: queries are not compatible; modules will have to update
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/nvim-treesitter/parsers.lua | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index 105463ff6..8e28d743d 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -151,10 +151,11 @@ list.ledger = { list.lua = { install_info = { - url = "https://github.com/nvim-treesitter/tree-sitter-lua", - files = { "src/parser.c", "src/scanner.cc" }, + url = "https://github.com/MunifTanjim/tree-sitter-lua", + branch = "main", + files = { "src/parser.c", "src/scanner.c" }, }, - maintainers = { "@vigoux" }, + maintainers = { "@muniftanjim" }, } list.python = { |
