diff options
| author | NullVoxPopuli <LPSego3+dev@gmail.com> | 2021-02-28 17:40:35 -0500 |
|---|---|---|
| committer | Stephan Seitz <stephan.lauf@yahoo.de> | 2021-03-01 01:02:09 +0100 |
| commit | 3568e546698395cd476b02c9391d2cae78795242 (patch) | |
| tree | 124b6f027fe1aa9dedd628468fa9556421057ed2 /lua | |
| parent | Support the glimmer parser when the `hbs` template literal tag is used (diff) | |
| download | nvim-treesitter-3568e546698395cd476b02c9391d2cae78795242.tar nvim-treesitter-3568e546698395cd476b02c9391d2cae78795242.tar.gz nvim-treesitter-3568e546698395cd476b02c9391d2cae78795242.tar.bz2 nvim-treesitter-3568e546698395cd476b02c9391d2cae78795242.tar.lz nvim-treesitter-3568e546698395cd476b02c9391d2cae78795242.tar.xz nvim-treesitter-3568e546698395cd476b02c9391d2cae78795242.tar.zst nvim-treesitter-3568e546698395cd476b02c9391d2cae78795242.zip | |
Add glimmer parser
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/nvim-treesitter/parsers.lua | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index 2f92e5c31..b5427b12a 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -292,6 +292,16 @@ list.toml = { maintainers = {"@tk-shirasaka"}, } +list.glimmer = { + install_info = { + url = "https://github.com/alexlafroscia/tree-sitter-glimmer", + files = { "src/parser.c", "src/scanner.c" }, + }, + readme_name = "Glimmer and Ember", + maintainers = { "@alexlafroscia" }, + filetype = "handlebars" +} + list.vue = { install_info = { url = "https://github.com/ikatyang/tree-sitter-vue", |
