diff options
| author | ObserverOfTime <chronobserver@disroot.org> | 2023-11-21 02:19:07 +0200 |
|---|---|---|
| committer | ObserverOfTime <chronobserver@disroot.org> | 2023-11-21 13:13:26 +0200 |
| commit | 6b24db0c8fc1357522320e71c89069fdc66a4237 (patch) | |
| tree | 7797c1a44ff2e72ae97b5126afc1ed1c321a731b /lua | |
| parent | Update parsers: devicetree, wing (diff) | |
| download | nvim-treesitter-6b24db0c8fc1357522320e71c89069fdc66a4237.tar nvim-treesitter-6b24db0c8fc1357522320e71c89069fdc66a4237.tar.gz nvim-treesitter-6b24db0c8fc1357522320e71c89069fdc66a4237.tar.bz2 nvim-treesitter-6b24db0c8fc1357522320e71c89069fdc66a4237.tar.lz nvim-treesitter-6b24db0c8fc1357522320e71c89069fdc66a4237.tar.xz nvim-treesitter-6b24db0c8fc1357522320e71c89069fdc66a4237.tar.zst nvim-treesitter-6b24db0c8fc1357522320e71c89069fdc66a4237.zip | |
feat: add properties 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 dc9135698..b012d514a 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -1385,6 +1385,15 @@ list.promql = { maintainers = { "@MichaHoffmann" }, } +list.properties = { + install_info = { + url = "https://github.com/ObserverOfTime/tree-sitter-properties", + files = { "src/parser.c" }, + }, + filetype = "jproperties", + maintainers = { "@ObserverOfTime" }, +} + list.proto = { install_info = { url = "https://github.com/treywood/tree-sitter-proto", |
