diff options
| author | ObserverOfTime <chronobserver@disroot.org> | 2023-07-24 13:07:35 +0300 |
|---|---|---|
| committer | ObserverOfTime <chronobserver@disroot.org> | 2023-08-10 23:17:56 +0300 |
| commit | 898f9c13d60bd51bdf873e284177f98264f0954f (patch) | |
| tree | 2c8fcbed09bfa14088f9d6bdc8f46b88e8dae00c /lua | |
| parent | feat(go): add `max` and `min` to `@function.builtin` (diff) | |
| download | nvim-treesitter-898f9c13d60bd51bdf873e284177f98264f0954f.tar nvim-treesitter-898f9c13d60bd51bdf873e284177f98264f0954f.tar.gz nvim-treesitter-898f9c13d60bd51bdf873e284177f98264f0954f.tar.bz2 nvim-treesitter-898f9c13d60bd51bdf873e284177f98264f0954f.tar.lz nvim-treesitter-898f9c13d60bd51bdf873e284177f98264f0954f.tar.xz nvim-treesitter-898f9c13d60bd51bdf873e284177f98264f0954f.tar.zst nvim-treesitter-898f9c13d60bd51bdf873e284177f98264f0954f.zip | |
feat: add requirements parser
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/nvim-treesitter/parsers.lua | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index 6ac8be998..3c1040367 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -1310,6 +1310,15 @@ list.rego = { maintainers = { "@FallenAngel97" }, } +list.requirements = { + install_info = { + url = "https://github.com/ObserverOfTime/tree-sitter-requirements", + files = { "src/parser.c" }, + }, + maintainers = { "@ObserverOfTime" }, + readme_name = "pip requirements", +} + list.rnoweb = { install_info = { url = "https://github.com/bamonroe/tree-sitter-rnoweb", |
