mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-17 02:40:09 -04:00
parsers: add ini (https://github.com/justinmk/tree-sitter-ini)
Addresses the following request https://github.com/nvim-treesitter/nvim-treesitter/issues/2282#issuecomment-1398856301
This commit is contained in:
parent
c9615952e7
commit
fde3505718
1 changed files with 10 additions and 0 deletions
|
|
@ -17,6 +17,7 @@ local filetype_to_parsername = {
|
||||||
rmd = "markdown",
|
rmd = "markdown",
|
||||||
cs = "c_sharp",
|
cs = "c_sharp",
|
||||||
tape = "vhs",
|
tape = "vhs",
|
||||||
|
dosini = "ini",
|
||||||
}
|
}
|
||||||
|
|
||||||
---@class InstallInfo
|
---@class InstallInfo
|
||||||
|
|
@ -1405,6 +1406,15 @@ list.ebnf = {
|
||||||
experimental = true,
|
experimental = true,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
list.ini = {
|
||||||
|
install_info = {
|
||||||
|
url = "https://github.com/justinmk/tree-sitter-ini",
|
||||||
|
files = { "src/parser.c" },
|
||||||
|
},
|
||||||
|
maintainers = { "@theHamsta" },
|
||||||
|
experimental = true,
|
||||||
|
}
|
||||||
|
|
||||||
local M = {
|
local M = {
|
||||||
list = list,
|
list = list,
|
||||||
filetype_to_parsername = filetype_to_parsername,
|
filetype_to_parsername = filetype_to_parsername,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue