diff options
| author | Stephan Seitz <stephan.seitz@fau.de> | 2020-07-22 16:09:23 +0200 |
|---|---|---|
| committer | Thomas Vigouroux <39092278+vigoux@users.noreply.github.com> | 2020-07-23 09:08:22 +0200 |
| commit | cd507463acb7fa7d2b7075976d552e04f610dda3 (patch) | |
| tree | 6f3a6167fe6a5fbe4347324e6742707c1e1b51de /lua | |
| parent | add js textobject queries (diff) | |
| download | nvim-treesitter-cd507463acb7fa7d2b7075976d552e04f610dda3.tar nvim-treesitter-cd507463acb7fa7d2b7075976d552e04f610dda3.tar.gz nvim-treesitter-cd507463acb7fa7d2b7075976d552e04f610dda3.tar.bz2 nvim-treesitter-cd507463acb7fa7d2b7075976d552e04f610dda3.tar.lz nvim-treesitter-cd507463acb7fa7d2b7075976d552e04f610dda3.tar.xz nvim-treesitter-cd507463acb7fa7d2b7075976d552e04f610dda3.tar.zst nvim-treesitter-cd507463acb7fa7d2b7075976d552e04f610dda3.zip | |
Fix #213: Add parser for dart
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/nvim-treesitter/parsers.lua | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index 42c41870e..9ee71bc8a 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -207,6 +207,13 @@ list.nix = { } } +list.dart = { + install_info = { + url = "https://github.com/UserNobody14/tree-sitter-dart", + files = { "src/parser.c", "src/scanner.c" }, + } +} + -- Parsers for injections list.regex = { install_info = { |
