diff options
| author | Robert Jackson <rjackson@linkedin.com> | 2021-11-02 14:08:02 -0400 |
|---|---|---|
| committer | Santos Gallegos <stsewd@protonmail.com> | 2021-11-11 21:11:15 -0500 |
| commit | 89b3b77033d3e0f36729332d3a43e61f21c95048 (patch) | |
| tree | 766908c628d91ff0f29ea5731d3f436101a9a908 /lua | |
| parent | Add Operators for Ruby (diff) | |
| download | nvim-treesitter-89b3b77033d3e0f36729332d3a43e61f21c95048.tar nvim-treesitter-89b3b77033d3e0f36729332d3a43e61f21c95048.tar.gz nvim-treesitter-89b3b77033d3e0f36729332d3a43e61f21c95048.tar.bz2 nvim-treesitter-89b3b77033d3e0f36729332d3a43e61f21c95048.tar.lz nvim-treesitter-89b3b77033d3e0f36729332d3a43e61f21c95048.tar.xz nvim-treesitter-89b3b77033d3e0f36729332d3a43e61f21c95048.tar.zst nvim-treesitter-89b3b77033d3e0f36729332d3a43e61f21c95048.zip | |
Add `html.handlebars` as a valid type for the glimmer parser.
This filetype is in common use due to https://github.com/mustache/vim-mustache-handlebars/blob/master/ftdetect/handlebars.vim#L2
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/nvim-treesitter/parsers.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index dc4c6e17f..3025c1d4f 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -457,6 +457,7 @@ list.glimmer = { readme_name = "Glimmer and Ember", maintainers = { "@alexlafroscia" }, filetype = "handlebars", + used_by = { "html.handlebars" }, } list.vue = { |
