diff options
| author | PorterAtGoogle <70230577+PorterAtGoogle@users.noreply.github.com> | 2023-09-18 10:26:02 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-09-19 01:26:02 +0900 |
| commit | b4f6dd72980607a9821d24502b0ca7ee826376af (patch) | |
| tree | c6e90c12315b6767225e987e7b11c52276b2719a /lua | |
| parent | Update README (#5419) (diff) | |
| download | nvim-treesitter-b4f6dd72980607a9821d24502b0ca7ee826376af.tar nvim-treesitter-b4f6dd72980607a9821d24502b0ca7ee826376af.tar.gz nvim-treesitter-b4f6dd72980607a9821d24502b0ca7ee826376af.tar.bz2 nvim-treesitter-b4f6dd72980607a9821d24502b0ca7ee826376af.tar.lz nvim-treesitter-b4f6dd72980607a9821d24502b0ca7ee826376af.tar.xz nvim-treesitter-b4f6dd72980607a9821d24502b0ca7ee826376af.tar.zst nvim-treesitter-b4f6dd72980607a9821d24502b0ca7ee826376af.zip | |
feat(textproto): Add Textproto parser and queries (#5402)
* Add textproto parser and queries
* remove extra newline
* Apply suggestions from code review
Co-authored-by: ObserverOfTime <chronobserver@disroot.org>
---------
Co-authored-by: ObserverOfTime <chronobserver@disroot.org>
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/nvim-treesitter/parsers.lua | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index 2880edec7..be26b8f4c 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -1707,6 +1707,14 @@ list.terraform = { maintainers = { "@MichaHoffmann" }, } +list.textproto = { + install_info = { + url = "https://github.com/PorterAtGoogle/tree-sitter-textproto", + files = { "src/parser.c" }, + }, + maintainers = { "@Porter" }, +} + list.thrift = { install_info = { url = "https://github.com/duskmoon314/tree-sitter-thrift", |
