aboutsummaryrefslogtreecommitdiffstats
path: root/lua
diff options
context:
space:
mode:
authorJędrzej Boczar <yendreij@gmail.com>2021-02-10 22:18:38 +0100
committerGitHub <noreply@github.com>2021-02-10 22:18:38 +0100
commit517c62d3e5a1966fc710d947224dc6ad1dfa383a (patch)
treed879af25069b4ddfee9ad6863defda9f74c7b238 /lua
parentLua: highlight fields (diff)
downloadnvim-treesitter-517c62d3e5a1966fc710d947224dc6ad1dfa383a.tar
nvim-treesitter-517c62d3e5a1966fc710d947224dc6ad1dfa383a.tar.gz
nvim-treesitter-517c62d3e5a1966fc710d947224dc6ad1dfa383a.tar.bz2
nvim-treesitter-517c62d3e5a1966fc710d947224dc6ad1dfa383a.tar.lz
nvim-treesitter-517c62d3e5a1966fc710d947224dc6ad1dfa383a.tar.xz
nvim-treesitter-517c62d3e5a1966fc710d947224dc6ad1dfa383a.tar.zst
nvim-treesitter-517c62d3e5a1966fc710d947224dc6ad1dfa383a.zip
Add devicetree parser with queries (#900)
* Add devicetree parser with queries * [docgen] Update README.md skip-checks: true * queries/devicetree: update highlight capture groups * minor fix in CONTRIBUTING.md * Revert "minor fix in CONTRIBUTING.md" This reverts commit 23622b49dbb9eace471e036c0f94fc64b5fda951. * queries/devicetree: add self as maintainer * [docgen] Update README.md skip-checks: true Co-authored-by: Github Actions <actions@github>
Diffstat (limited to 'lua')
-rw-r--r--lua/nvim-treesitter/parsers.lua10
1 files changed, 10 insertions, 0 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua
index 7be10c84d..547556cda 100644
--- a/lua/nvim-treesitter/parsers.lua
+++ b/lua/nvim-treesitter/parsers.lua
@@ -416,6 +416,16 @@ list.turtle = {
maintainers = { "@bonabeavis" },
}
+list.devicetree = {
+ install_info = {
+ url = "https://github.com/joelspadin/tree-sitter-devicetree",
+ files = { "src/parser.c" },
+ branch = "main",
+ },
+ filetype = 'dts',
+ maintainers = { "@jedrzejboczar" },
+}
+
local M = {
list = list
}