diff options
| author | Amaan Qureshi <amaanq12@gmail.com> | 2023-02-04 15:42:12 -0500 |
|---|---|---|
| committer | Stephan Seitz <stephan.seitz@fau.de> | 2023-02-05 02:21:49 -0800 |
| commit | 720f75f9881cae820cecde23fc2f07affacf2826 (patch) | |
| tree | 31e891b6b3f877010c75905023166c8bad79df75 /lua | |
| parent | Update parsers: arduino, markdown, markdown_inline, tlaplus (diff) | |
| download | nvim-treesitter-720f75f9881cae820cecde23fc2f07affacf2826.tar nvim-treesitter-720f75f9881cae820cecde23fc2f07affacf2826.tar.gz nvim-treesitter-720f75f9881cae820cecde23fc2f07affacf2826.tar.bz2 nvim-treesitter-720f75f9881cae820cecde23fc2f07affacf2826.tar.lz nvim-treesitter-720f75f9881cae820cecde23fc2f07affacf2826.tar.xz nvim-treesitter-720f75f9881cae820cecde23fc2f07affacf2826.tar.zst nvim-treesitter-720f75f9881cae820cecde23fc2f07affacf2826.zip | |
feat: add RON
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/nvim-treesitter/parsers.lua | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index 024bdefce..33196bd8d 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -424,7 +424,6 @@ list.func = { install_info = { url = "https://github.com/amaanq/tree-sitter-func", files = { "src/parser.c" }, - branch = "master", }, maintainers = { "@amaanq" }, } @@ -755,7 +754,6 @@ list.julia = { list.kdl = { install_info = { url = "https://github.com/amaanq/tree-sitter-kdl", - branch = "master", files = { "src/parser.c", "src/scanner.c" }, }, maintainers = { "@amaanq" }, @@ -1128,6 +1126,14 @@ list.rnoweb = { maintainers = { "@bamonroe" }, } +list.ron = { + install_info = { + url = "https://github.com/amaanq/tree-sitter-ron", + files = { "src/parser.c", "src/scanner.c" }, + }, + maintainers = { "@amaanq" }, +} + list.rst = { install_info = { url = "https://github.com/stsewd/tree-sitter-rst", |
