diff options
| author | Cezary Drożak <czarek@drozak.net> | 2021-10-01 11:33:33 +0200 |
|---|---|---|
| committer | Stephan Seitz <stephan.seitz@fau.de> | 2021-10-07 22:43:09 +0200 |
| commit | c2c454c29a92e2d0db955fc1d6841566c28e3ecd (patch) | |
| tree | 86e49ee3b3d4f4bb82450a947dc62120e261fed7 /lua | |
| parent | feat: add "experimental" key to parsers (diff) | |
| download | nvim-treesitter-c2c454c29a92e2d0db955fc1d6841566c28e3ecd.tar nvim-treesitter-c2c454c29a92e2d0db955fc1d6841566c28e3ecd.tar.gz nvim-treesitter-c2c454c29a92e2d0db955fc1d6841566c28e3ecd.tar.bz2 nvim-treesitter-c2c454c29a92e2d0db955fc1d6841566c28e3ecd.tar.lz nvim-treesitter-c2c454c29a92e2d0db955fc1d6841566c28e3ecd.tar.xz nvim-treesitter-c2c454c29a92e2d0db955fc1d6841566c28e3ecd.tar.zst nvim-treesitter-c2c454c29a92e2d0db955fc1d6841566c28e3ecd.zip | |
parsers: add D parser
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/nvim-treesitter/parsers.lua | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index c54ebfa50..89b12d39b 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -85,6 +85,17 @@ list.cuda = { maintainers = { "@theHamsta" }, } +list.d = { + install_info = { + url = "https://github.com/CyberShadow/tree-sitter-d", + files = { "src/parser.c", "src/scanner.cc" }, + requires_generate_from_grammar = true, + }, + maintainers = { "@nawordar" }, + -- Generating grammar takes ~60s + experimental = true, +} + list.glsl = { install_info = { url = "https://github.com/theHamsta/tree-sitter-glsl", |
