mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-02 11:36:54 -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",
|
||||
cs = "c_sharp",
|
||||
tape = "vhs",
|
||||
dosini = "ini",
|
||||
}
|
||||
|
||||
---@class InstallInfo
|
||||
|
|
@ -1405,6 +1406,15 @@ list.ebnf = {
|
|||
experimental = true,
|
||||
}
|
||||
|
||||
list.ini = {
|
||||
install_info = {
|
||||
url = "https://github.com/justinmk/tree-sitter-ini",
|
||||
files = { "src/parser.c" },
|
||||
},
|
||||
maintainers = { "@theHamsta" },
|
||||
experimental = true,
|
||||
}
|
||||
|
||||
local M = {
|
||||
list = list,
|
||||
filetype_to_parsername = filetype_to_parsername,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue