nvim-treesitter/lua/nvim-treesitter/parsers.lua

1702 lines
38 KiB
Lua
Raw Normal View History

local api = vim.api
local ts = vim.treesitter
local new_lang_api = ts.language.register ~= nil
local filetype_to_parsername = {}
if new_lang_api then
filetype_to_parsername = setmetatable({}, {
__newindex = function(_, k, v)
require("nvim-treesitter.utils").notify(
"filetype_to_parsername is deprecated, please use 'vim.treesitter.language.register'",
vim.log.levels.WARN
)
ts.language.register(v, k)
end,
})
end
local function register_lang(lang, ft)
if new_lang_api then
ts.language.register(lang, ft)
return
end
filetype_to_parsername[ft] = lang
end
for ft, lang in pairs {
javascriptreact = "javascript",
ecma = "javascript",
jsx = "javascript",
2023-03-20 18:10:40 +02:00
sh = "bash",
PKGBUILD = "bash",
html_tags = "html",
["typescript.tsx"] = "tsx",
["html.handlebars"] = "glimmer",
systemverilog = "verilog",
cls = "latex",
sty = "latex",
pandoc = "markdown",
rmd = "markdown",
2023-01-23 11:04:31 +01:00
quarto = "markdown",
dosini = "ini",
confini = "ini",
} do
register_lang(lang, ft)
end
2022-10-31 10:52:52 +00:00
---@class InstallInfo
---@field url string
---@field branch string|nil
---@field revision string|nil
---@field files string[]
---@field generate_requires_npm boolean|nil
---@field requires_generate_from_grammar boolean|nil
---@field location string|nil
---@field use_makefile boolean|nil
---@field cxx_standard string|nil
2022-10-31 10:52:52 +00:00
---@class ParserInfo
---@field install_info InstallInfo
---@field filetype string
---@field maintainers string[]
---@field experimental boolean|nil
---@field readme_name string|nil
2022-10-31 10:52:52 +00:00
---@type ParserInfo[]
local list = setmetatable({}, {
__newindex = function(table, parsername, parserconfig)
rawset(table, parsername, parserconfig)
register_lang(parsername, parserconfig.filetype or parsername)
2021-07-04 16:12:17 -05:00
end,
})
2022-06-04 11:11:34 +08:00
2022-12-14 15:59:24 +01:00
list.ada = {
install_info = {
url = "https://github.com/briot/tree-sitter-ada",
files = { "src/parser.c" },
},
maintainers = { "@briot" },
}
2022-07-11 23:05:32 +08:00
list.agda = {
install_info = {
url = "https://github.com/AusCyberman/tree-sitter-agda",
files = { "src/parser.c", "src/scanner.cc" },
},
2022-07-11 23:16:25 +08:00
maintainers = { "@Decodetalkers" },
2022-07-11 23:05:32 +08:00
}
list.arduino = {
install_info = {
url = "https://github.com/ObserverOfTime/tree-sitter-arduino",
files = { "src/parser.c", "src/scanner.cc" },
},
maintainers = { "@ObserverOfTime" },
}
list.astro = {
2022-07-07 22:33:47 +08:00
install_info = {
url = "https://github.com/virchau13/tree-sitter-astro",
files = { "src/parser.c", "src/scanner.cc" },
},
maintainers = { "@virchau13" },
}
list.awk = {
install_info = {
url = "https://github.com/Beaglefoot/tree-sitter-awk",
2022-07-07 22:33:47 +08:00
files = { "src/parser.c", "src/scanner.c" },
},
}
2022-06-04 11:11:34 +08:00
list.bash = {
2022-06-04 11:11:34 +08:00
install_info = {
url = "https://github.com/tree-sitter/tree-sitter-bash",
2022-06-04 11:11:34 +08:00
files = { "src/parser.c", "src/scanner.cc" },
},
filetype = "sh",
maintainers = { "@TravonteD" },
2022-06-04 11:11:34 +08:00
}
2023-03-22 05:24:56 -04:00
list.bass = {
install_info = {
url = "https://github.com/amaanq/tree-sitter-bass",
files = { "src/parser.c" },
},
maintainers = { "@amaanq" },
}
list.beancount = {
2022-04-06 21:04:19 +08:00
install_info = {
url = "https://github.com/polarmutex/tree-sitter-beancount",
files = { "src/parser.c", "src/scanner.cc" },
2022-04-06 21:04:19 +08:00
},
maintainers = { "@polarmutex" },
2022-04-06 21:04:19 +08:00
}
list.bibtex = {
install_info = {
url = "https://github.com/latex-lsp/tree-sitter-bibtex",
files = { "src/parser.c" },
},
filetype = "bib",
maintainers = { "@theHamsta", "@clason" },
}
2023-02-23 04:42:37 -05:00
list.bicep = {
install_info = {
url = "https://github.com/amaanq/tree-sitter-bicep",
files = { "src/parser.c" },
},
maintainers = { "@amaanq" },
}
list.blueprint = {
install_info = {
url = "https://gitlab.com/gabmus/tree-sitter-blueprint.git",
files = { "src/parser.c" },
},
maintainers = { "@gabmus" },
experimental = true,
}
list.c = {
install_info = {
url = "https://github.com/tree-sitter/tree-sitter-c",
2021-07-04 16:12:17 -05:00
files = { "src/parser.c" },
},
2023-04-21 04:25:45 -04:00
maintainers = { "@amaanq" },
}
list.c_sharp = {
install_info = {
url = "https://github.com/tree-sitter/tree-sitter-c-sharp",
files = { "src/parser.c", "src/scanner.c" },
},
filetype = "cs",
maintainers = { "@Luxed" },
}
list.capnp = {
install_info = {
url = "https://github.com/amaanq/tree-sitter-capnp",
files = { "src/parser.c" },
},
maintainers = { "@amaanq" },
}
2022-10-22 00:37:27 +03:00
list.chatito = {
install_info = {
url = "https://github.com/ObserverOfTime/tree-sitter-chatito",
files = { "src/parser.c" },
},
maintainers = { "@ObserverOfTime" },
}
2020-10-29 22:59:36 +09:00
list.clojure = {
install_info = {
url = "https://github.com/sogaiu/tree-sitter-clojure",
2021-03-07 16:28:07 +01:00
files = { "src/parser.c" },
2020-10-29 22:59:36 +09:00
},
2021-07-04 16:12:17 -05:00
maintainers = { "@sogaiu" },
2020-10-29 22:59:36 +09:00
}
list.cmake = {
install_info = {
url = "https://github.com/uyha/tree-sitter-cmake",
files = { "src/parser.c", "src/scanner.cc" },
},
maintainers = { "@uyha" },
}
list.comment = {
install_info = {
url = "https://github.com/stsewd/tree-sitter-comment",
files = { "src/parser.c", "src/scanner.c" },
},
maintainers = { "@stsewd" },
}
2021-04-04 09:45:45 +02:00
list.commonlisp = {
install_info = {
2021-04-05 14:37:53 +02:00
url = "https://github.com/theHamsta/tree-sitter-commonlisp",
2021-04-04 09:45:45 +02:00
files = { "src/parser.c" },
generate_requires_npm = true,
2021-04-04 09:45:45 +02:00
},
2021-07-04 16:12:17 -05:00
filetype = "lisp",
maintainers = { "@theHamsta" },
2021-04-04 09:45:45 +02:00
}
list.cooklang = {
install_info = {
url = "https://github.com/addcninblue/tree-sitter-cooklang",
files = { "src/parser.c", "src/scanner.cc" },
},
maintainers = { "@addcninblue" },
}
2023-02-23 18:44:10 -05:00
list.cpon = {
install_info = {
url = "https://github.com/amaanq/tree-sitter-cpon",
files = { "src/parser.c" },
},
maintainers = { "@amaanq" },
}
list.cpp = {
install_info = {
url = "https://github.com/tree-sitter/tree-sitter-cpp",
2021-03-07 17:05:16 +01:00
files = { "src/parser.c", "src/scanner.cc" },
generate_requires_npm = true,
2020-07-15 16:03:21 +02:00
},
2021-07-04 16:12:17 -05:00
maintainers = { "@theHamsta" },
2021-06-09 18:47:31 +02:00
}
list.css = {
install_info = {
url = "https://github.com/tree-sitter/tree-sitter-css",
files = { "src/parser.c", "src/scanner.c" },
},
maintainers = { "@TravonteD" },
}
2021-06-09 18:47:31 +02:00
list.cuda = {
install_info = {
url = "https://github.com/theHamsta/tree-sitter-cuda",
2021-07-04 16:12:17 -05:00
files = { "src/parser.c", "src/scanner.cc" },
2021-06-16 20:47:45 +02:00
generate_requires_npm = true,
2021-06-09 18:47:31 +02:00
},
2021-07-04 16:12:17 -05:00
maintainers = { "@theHamsta" },
}
2023-03-04 04:31:11 -05:00
list.cue = {
install_info = {
url = "https://github.com/eonpatapon/tree-sitter-cue",
files = { "src/parser.c", "src/scanner.c" },
},
maintainers = { "@amaanq" },
}
2021-10-01 11:33:33 +02:00
list.d = {
install_info = {
url = "https://github.com/CyberShadow/tree-sitter-d",
files = { "src/parser.c", "src/scanner.cc" },
requires_generate_from_grammar = true,
},
-- Generating grammar takes ~60s
experimental = true,
2023-03-11 15:25:11 -05:00
maintainers = { "@nawordar" },
2021-10-01 11:33:33 +02:00
}
list.dart = {
2023-01-29 12:03:04 -05:00
install_info = {
url = "https://github.com/UserNobody14/tree-sitter-dart",
files = { "src/parser.c", "src/scanner.c" },
2023-01-29 12:03:04 -05:00
},
maintainers = { "@akinsho" },
2023-01-29 12:03:04 -05:00
}
list.devicetree = {
2021-09-11 17:26:06 +02:00
install_info = {
url = "https://github.com/joelspadin/tree-sitter-devicetree",
2021-09-11 17:26:06 +02:00
files = { "src/parser.c" },
},
filetype = "dts",
maintainers = { "@jedrzejboczar" },
2021-09-11 17:26:06 +02:00
}
2023-02-23 16:06:47 -05:00
list.dhall = {
install_info = {
url = "https://github.com/jbellerb/tree-sitter-dhall",
files = { "src/parser.c", "src/scanner.c" },
},
maintainers = { "@amaanq" },
}
list.diff = {
2022-06-15 01:15:25 +02:00
install_info = {
url = "https://github.com/the-mikedavis/tree-sitter-diff",
files = { "src/parser.c" },
2022-06-15 01:15:25 +02:00
},
filetype = "gitdiff",
2023-03-11 15:25:11 -05:00
maintainers = { "@gbprod" },
2022-06-15 01:15:25 +02:00
}
list.dockerfile = {
install_info = {
url = "https://github.com/camdencheek/tree-sitter-dockerfile",
files = { "src/parser.c" },
},
2021-07-04 16:12:17 -05:00
maintainers = { "@camdencheek" },
}
list.dot = {
install_info = {
url = "https://github.com/rydesun/tree-sitter-dot",
files = { "src/parser.c" },
},
maintainers = { "@rydesun" },
}
list.ebnf = {
install_info = {
2023-03-11 15:25:11 -05:00
url = "https://github.com/RubixDev/ebnf",
files = { "src/parser.c" },
location = "crates/tree-sitter-ebnf",
},
maintainers = { "@RubixDev" },
experimental = true,
}
list.eex = {
2023-02-01 22:35:54 -05:00
install_info = {
url = "https://github.com/connorlay/tree-sitter-eex",
2023-02-01 22:35:54 -05:00
files = { "src/parser.c" },
},
filetype = "eelixir",
maintainers = { "@connorlay" },
}
list.elixir = {
install_info = {
url = "https://github.com/elixir-lang/tree-sitter-elixir",
files = { "src/parser.c", "src/scanner.cc" },
},
maintainers = { "@connorlay" },
}
list.elm = {
install_info = {
url = "https://github.com/elm-tooling/tree-sitter-elm",
files = { "src/parser.c", "src/scanner.cc" },
},
maintainers = { "@zweimach" },
}
list.elsa = {
install_info = {
url = "https://github.com/glapa-grossklag/tree-sitter-elsa",
files = { "src/parser.c" },
},
maintainers = { "@glapa-grossklag", "@amaanq" },
}
list.elvish = {
install_info = {
url = "https://github.com/ckafi/tree-sitter-elvish",
files = { "src/parser.c" },
},
maintainers = { "@ckafi" },
}
list.embedded_template = {
install_info = {
url = "https://github.com/tree-sitter/tree-sitter-embedded-template",
files = { "src/parser.c" },
},
filetype = "eruby",
}
list.erlang = {
2020-11-22 17:14:13 -06:00
install_info = {
url = "https://github.com/WhatsApp/tree-sitter-erlang",
2020-11-22 17:14:13 -06:00
files = { "src/parser.c" },
},
maintainers = { "@filmor" },
2020-11-22 17:14:13 -06:00
}
list.fennel = {
install_info = {
url = "https://github.com/travonted/tree-sitter-fennel",
files = { "src/parser.c" },
},
2021-07-04 16:12:17 -05:00
maintainers = { "@TravonteD" },
}
2023-03-26 18:37:15 -04:00
list.firrtl = {
install_info = {
url = "https://github.com/amaanq/tree-sitter-firrtl",
files = { "src/parser.c", "src/scanner.cc" },
},
maintainers = { "@amaanq" },
}
list.fish = {
2021-08-27 07:30:22 -07:00
install_info = {
url = "https://github.com/ram02z/tree-sitter-fish",
files = { "src/parser.c", "src/scanner.c" },
2021-08-27 07:30:22 -07:00
},
maintainers = { "@ram02z" },
2021-08-27 07:30:22 -07:00
}
list.foam = {
install_info = {
url = "https://github.com/FoamScience/tree-sitter-foam",
files = { "src/parser.c", "src/scanner.c" },
},
maintainers = { "@FoamScience" },
-- Queries might change over time on the grammar's side
-- Otherwise everything runs fine
experimental = true,
}
list.fortran = {
install_info = {
url = "https://github.com/stadelmanma/tree-sitter-fortran",
files = { "src/parser.c", "src/scanner.cc" },
},
maintainers = { "@amaanq" },
}
list.fsh = {
install_info = {
url = "https://github.com/mgramigna/tree-sitter-fsh",
files = { "src/parser.c" },
},
maintainers = { "@mgramigna" },
}
list.func = {
install_info = {
url = "https://github.com/amaanq/tree-sitter-func",
files = { "src/parser.c" },
},
maintainers = { "@amaanq" },
}
list.fusion = {
install_info = {
url = "https://gitlab.com/jirgn/tree-sitter-fusion.git",
files = { "src/parser.c", "src/scanner.c" },
},
maintainers = { "@jirgn" },
}
list.gdscript = {
2021-03-11 00:57:54 +01:00
install_info = {
url = "https://github.com/PrestonKnopp/tree-sitter-gdscript",
files = { "src/parser.c", "src/scanner.cc" },
},
maintainers = { "@PrestonKnopp" },
2023-03-11 15:25:11 -05:00
readme_name = "Godot (gdscript)",
}
list.git_rebase = {
install_info = {
url = "https://github.com/the-mikedavis/tree-sitter-git-rebase",
files = { "src/parser.c" },
2021-03-11 00:57:54 +01:00
},
filetype = "gitrebase",
maintainers = { "@gbprod" },
2021-03-11 00:57:54 +01:00
}
2020-11-30 22:58:52 +01:00
list.gitattributes = {
install_info = {
url = "https://github.com/ObserverOfTime/tree-sitter-gitattributes",
files = { "src/parser.c" },
},
maintainers = { "@ObserverOfTime" },
}
list.gitcommit = {
install_info = {
url = "https://github.com/gbprod/tree-sitter-gitcommit",
files = { "src/parser.c", "src/scanner.c" },
},
maintainers = { "@gbprod" },
}
2023-03-09 18:07:54 -05:00
list.git_config = {
install_info = {
url = "https://github.com/the-mikedavis/tree-sitter-git-config",
files = { "src/parser.c" },
},
filetype = "gitconfig",
maintainers = { "@amaanq" },
readme_name = "git_config",
2023-03-09 18:07:54 -05:00
}
list.gitignore = {
install_info = {
url = "https://github.com/shunsambongi/tree-sitter-gitignore",
files = { "src/parser.c" },
2020-12-28 17:55:07 +01:00
},
2022-11-21 18:45:48 +02:00
maintainers = { "@theHamsta" },
}
list.gleam = {
install_info = {
2023-03-08 16:37:58 -05:00
url = "https://github.com/gleam-lang/tree-sitter-gleam",
files = { "src/parser.c", "src/scanner.c" },
},
2023-03-08 16:37:58 -05:00
maintainers = { "@amaanq" },
}
list.glimmer = {
2022-09-07 10:30:43 +02:00
install_info = {
url = "https://github.com/alexlafroscia/tree-sitter-glimmer",
2022-09-07 10:30:43 +02:00
files = { "src/parser.c", "src/scanner.c" },
},
filetype = "handlebars",
2023-03-11 15:25:11 -05:00
maintainers = { "@NullVoxPopuli" },
readme_name = "Glimmer and Ember",
2022-09-07 10:30:43 +02:00
}
list.glsl = {
install_info = {
url = "https://github.com/theHamsta/tree-sitter-glsl",
files = { "src/parser.c" },
generate_requires_npm = true,
},
maintainers = { "@theHamsta" },
}
list.go = {
2021-03-27 18:10:31 +07:00
install_info = {
url = "https://github.com/tree-sitter/tree-sitter-go",
files = { "src/parser.c" },
},
maintainers = { "@theHamsta", "@WinWisely268" },
}
list.godot_resource = {
install_info = {
url = "https://github.com/PrestonKnopp/tree-sitter-godot-resource",
2021-07-04 16:12:17 -05:00
files = { "src/parser.c", "src/scanner.c" },
2021-03-27 18:10:31 +07:00
},
filetype = "gdresource",
maintainers = { "@pierpo" },
2023-03-11 15:25:11 -05:00
readme_name = "Godot Resources (gdresource)",
2021-03-27 18:10:31 +07:00
}
list.gomod = {
2020-12-07 08:17:37 +01:00
install_info = {
url = "https://github.com/camdencheek/tree-sitter-go-mod",
files = { "src/parser.c" },
2020-12-07 08:17:37 +01:00
},
maintainers = { "@camdencheek" },
2020-12-07 08:17:37 +01:00
}
2023-02-03 10:14:13 -05:00
list.gosum = {
install_info = {
url = "https://github.com/amaanq/tree-sitter-go-sum",
files = { "src/parser.c" },
},
maintainers = { "@amaanq" },
}
list.gowork = {
2021-05-14 21:23:58 +02:00
install_info = {
url = "https://github.com/omertuc/tree-sitter-go-work",
files = { "src/parser.c" },
2021-05-14 21:23:58 +02:00
},
maintainers = { "@omertuc" },
2021-05-14 21:23:58 +02:00
}
list.graphql = {
2022-02-05 09:38:29 -08:00
install_info = {
url = "https://github.com/bkegley/tree-sitter-graphql",
2022-02-05 09:38:29 -08:00
files = { "src/parser.c" },
},
maintainers = { "@bkegley" },
2022-02-05 09:38:29 -08:00
}
list.hack = {
install_info = {
url = "https://github.com/slackhq/tree-sitter-hack",
files = { "src/parser.c", "src/scanner.cc" },
},
}
2023-03-11 03:02:30 -05:00
list.hare = {
install_info = {
url = "https://github.com/amaanq/tree-sitter-hare",
files = { "src/parser.c" },
},
maintainers = { "@amaanq" },
}
list.haskell = {
install_info = {
url = "https://github.com/tree-sitter/tree-sitter-haskell",
files = { "src/parser.c", "src/scanner.c" },
},
}
list.hcl = {
install_info = {
url = "https://github.com/MichaHoffmann/tree-sitter-hcl",
files = { "src/parser.c", "src/scanner.cc" },
},
maintainers = { "@MichaHoffmann" },
}
list.heex = {
install_info = {
url = "https://github.com/connorlay/tree-sitter-heex",
files = { "src/parser.c" },
},
maintainers = { "@connorlay" },
}
list.hjson = {
install_info = {
url = "https://github.com/winston0410/tree-sitter-hjson",
files = { "src/parser.c" },
generate_requires_npm = true,
},
maintainers = { "@winston0410" },
}
list.hlsl = {
install_info = {
url = "https://github.com/theHamsta/tree-sitter-hlsl",
files = { "src/parser.c", "src/scanner.cc" },
generate_requires_npm = true,
},
maintainers = { "@theHamsta" },
}
list.hocon = {
install_info = {
url = "https://github.com/antosha417/tree-sitter-hocon",
files = { "src/parser.c" },
generate_requires_npm = true,
},
maintainers = { "@antosha417" },
}
list.html = {
2022-04-19 23:50:32 +04:30
install_info = {
url = "https://github.com/tree-sitter/tree-sitter-html",
2022-04-19 23:50:32 +04:30
files = { "src/parser.c", "src/scanner.cc" },
},
maintainers = { "@TravonteD" },
2022-04-19 23:50:32 +04:30
}
list.htmldjango = {
install_info = {
url = "https://github.com/interdependence/tree-sitter-htmldjango",
files = { "src/parser.c" },
2021-07-04 16:12:17 -05:00
},
maintainers = { "@ObserverOfTime" },
experimental = true,
}
list.http = {
install_info = {
url = "https://github.com/rest-nvim/tree-sitter-http",
files = { "src/parser.c" },
generate_requires_npm = true,
},
maintainers = { "@amaanq" },
}
list.ini = {
2022-02-28 14:07:23 +01:00
install_info = {
url = "https://github.com/justinmk/tree-sitter-ini",
2022-02-28 14:07:23 +01:00
files = { "src/parser.c" },
},
maintainers = { "@theHamsta" },
2022-02-28 14:07:23 +01:00
experimental = true,
}
list.java = {
install_info = {
url = "https://github.com/tree-sitter/tree-sitter-java",
files = { "src/parser.c" },
},
maintainers = { "@p00f" },
}
list.javascript = {
install_info = {
url = "https://github.com/tree-sitter/tree-sitter-javascript",
files = { "src/parser.c", "src/scanner.c" },
},
2021-07-04 16:12:17 -05:00
maintainers = { "@steelsojka" },
}
list.jq = {
install_info = {
url = "https://github.com/flurie/tree-sitter-jq",
files = { "src/parser.c" },
2021-07-04 16:12:17 -05:00
},
maintainers = { "@ObserverOfTime" },
}
list.jsdoc = {
install_info = {
url = "https://github.com/tree-sitter/tree-sitter-jsdoc",
files = { "src/parser.c" },
},
maintainers = { "@steelsojka" },
}
list.json = {
install_info = {
url = "https://github.com/tree-sitter/tree-sitter-json",
files = { "src/parser.c" },
},
maintainers = { "@steelsojka" },
}
list.json5 = {
install_info = {
url = "https://github.com/Joakker/tree-sitter-json5",
files = { "src/parser.c" },
},
maintainers = { "@Joakker" },
}
list.jsonc = {
2023-01-31 09:14:58 -05:00
install_info = {
url = "https://gitlab.com/WhyNotHugo/tree-sitter-jsonc.git",
2023-01-31 09:14:58 -05:00
files = { "src/parser.c" },
generate_requires_npm = true,
2023-01-31 09:14:58 -05:00
},
maintainers = { "@WhyNotHugo" },
2023-03-11 15:25:11 -05:00
readme_name = "JSON with comments",
2023-01-31 09:14:58 -05:00
}
list.jsonnet = {
install_info = {
url = "https://github.com/sourcegraph/tree-sitter-jsonnet",
files = { "src/parser.c", "src/scanner.c" },
2021-07-04 16:12:17 -05:00
},
maintainers = { "@nawordar" },
}
list.julia = {
install_info = {
url = "https://github.com/tree-sitter/tree-sitter-julia",
files = { "src/parser.c", "src/scanner.c" },
},
maintainers = { "@theHamsta" },
}
list.kdl = {
install_info = {
url = "https://github.com/amaanq/tree-sitter-kdl",
files = { "src/parser.c", "src/scanner.c" },
},
maintainers = { "@amaanq" },
}
list.kotlin = {
install_info = {
url = "https://github.com/fwcd/tree-sitter-kotlin",
files = { "src/parser.c", "src/scanner.c" },
},
maintainers = { "@SalBakraa" },
}
list.lalrpop = {
2021-02-28 17:40:35 -05:00
install_info = {
url = "https://github.com/traxys/tree-sitter-lalrpop",
2021-02-28 17:40:35 -05:00
files = { "src/parser.c", "src/scanner.c" },
},
maintainers = { "@traxys" },
}
list.latex = {
install_info = {
url = "https://github.com/latex-lsp/tree-sitter-latex",
files = { "src/parser.c", "src/scanner.c" },
2021-02-17 09:37:56 +01:00
},
filetype = "tex",
maintainers = { "@theHamsta", "@clason" },
}
list.ledger = {
2021-02-15 18:35:13 +01:00
install_info = {
url = "https://github.com/cbarrete/tree-sitter-ledger",
2021-02-15 18:35:13 +01:00
files = { "src/parser.c" },
},
maintainers = { "@cbarrete" },
}
list.llvm = {
2021-07-19 07:44:03 +02:00
install_info = {
url = "https://github.com/benwilliamgraham/tree-sitter-llvm",
2021-07-19 07:44:03 +02:00
files = { "src/parser.c" },
},
maintainers = { "@benwilliamgraham" },
2021-07-19 07:44:03 +02:00
}
list.lua = {
install_info = {
url = "https://github.com/MunifTanjim/tree-sitter-lua",
2020-07-22 16:09:23 +02:00
files = { "src/parser.c", "src/scanner.c" },
},
maintainers = { "@muniftanjim" },
2020-07-22 16:09:23 +02:00
}
2023-03-19 08:09:12 -04:00
list.luadoc = {
install_info = {
url = "https://github.com/amaanq/tree-sitter-luadoc",
files = { "src/parser.c" },
},
maintainers = { "@amaanq" },
}
2023-03-03 05:33:20 -05:00
list.luap = {
install_info = {
url = "https://github.com/amaanq/tree-sitter-luap",
files = { "src/parser.c" },
},
maintainers = { "@amaanq" },
2023-03-04 20:25:03 +02:00
readme_name = "lua patterns",
2023-03-03 05:33:20 -05:00
}
list.m68k = {
2020-07-26 09:38:53 -05:00
install_info = {
url = "https://github.com/grahambates/tree-sitter-m68k",
files = { "src/parser.c" },
},
filetype = "asm68k",
2023-03-11 15:25:11 -05:00
maintainers = { "@grahambates" },
2020-07-26 09:38:53 -05:00
}
list.make = {
2020-08-16 20:11:56 -04:00
install_info = {
url = "https://github.com/alemuller/tree-sitter-make",
files = { "src/parser.c" },
},
maintainers = { "@lewis6991" },
2020-08-16 20:11:56 -04:00
}
list.markdown = {
2020-10-04 19:39:12 -05:00
install_info = {
url = "https://github.com/MDeiml/tree-sitter-markdown",
location = "tree-sitter-markdown",
2023-03-02 17:53:56 +01:00
files = { "src/parser.c", "src/scanner.c" },
2020-10-04 19:39:12 -05:00
},
maintainers = { "@MDeiml" },
2023-03-04 20:25:03 +02:00
readme_name = "markdown (basic highlighting)",
experimental = true,
2020-10-04 19:39:12 -05:00
}
list.markdown_inline = {
2020-09-30 00:30:26 +02:00
install_info = {
url = "https://github.com/MDeiml/tree-sitter-markdown",
location = "tree-sitter-markdown-inline",
2023-03-02 17:53:56 +01:00
files = { "src/parser.c", "src/scanner.c" },
2020-09-30 00:30:26 +02:00
},
maintainers = { "@MDeiml" },
2023-03-04 20:25:03 +02:00
readme_name = "markdown_inline (needed for full highlighting)",
experimental = true,
2020-09-30 00:30:26 +02:00
}
2023-02-28 00:16:21 -05:00
list.matlab = {
install_info = {
url = "https://github.com/mstanciu552/tree-sitter-matlab",
files = { "src/parser.c" },
},
maintainers = { "@amaanq" },
}
list.menhir = {
2021-03-10 12:00:02 +01:00
install_info = {
url = "https://github.com/Kerl13/tree-sitter-menhir",
files = { "src/parser.c", "src/scanner.cc" },
2021-03-10 12:00:02 +01:00
},
maintainers = { "@Kerl13" },
2021-03-10 12:00:02 +01:00
}
2021-03-07 17:05:16 +01:00
list.mermaid = {
install_info = {
url = "https://github.com/monaqa/tree-sitter-mermaid",
files = { "src/parser.c" },
},
2022-02-01 12:51:31 +01:00
experimental = true,
}
list.meson = {
install_info = {
url = "https://github.com/Decodetalkers/tree-sitter-meson",
2021-07-04 16:12:17 -05:00
files = { "src/parser.c" },
},
maintainers = { "@Decodetalkers" },
}
list.mlir = {
install_info = {
url = "https://github.com/artagnon/tree-sitter-mlir",
files = { "src/parser.c" },
requires_generate_from_grammar = true,
},
experimental = true,
maintainers = { "@artagnon" },
}
list.nickel = {
install_info = {
url = "https://github.com/nickel-lang/tree-sitter-nickel",
files = { "src/parser.c", "src/scanner.cc" },
},
}
list.ninja = {
2020-07-16 12:59:35 +02:00
install_info = {
url = "https://github.com/alemuller/tree-sitter-ninja",
files = { "src/parser.c" },
},
maintainers = { "@alemuller" },
2020-07-16 12:59:35 +02:00
}
list.nix = {
2020-07-28 07:39:45 -05:00
install_info = {
url = "https://github.com/cstrahan/tree-sitter-nix",
files = { "src/parser.c", "src/scanner.c" },
},
maintainers = { "@leo60228" },
2020-07-28 07:39:45 -05:00
}
list.norg = {
install_info = {
url = "https://github.com/nvim-neorg/tree-sitter-norg",
files = { "src/parser.c", "src/scanner.cc" },
cxx_standard = "c++14",
2023-03-11 15:25:11 -05:00
use_makefile = true,
},
maintainers = { "@JoeyGrajciar", "@vhyrro" },
}
list.ocaml = {
2021-03-14 22:38:54 -02:30
install_info = {
url = "https://github.com/tree-sitter/tree-sitter-ocaml",
files = { "src/parser.c", "src/scanner.cc" },
location = "ocaml",
2021-03-14 22:38:54 -02:30
},
maintainers = { "@undu" },
2021-03-14 22:38:54 -02:30
}
list.ocaml_interface = {
2020-11-17 17:28:53 -05:00
install_info = {
url = "https://github.com/tree-sitter/tree-sitter-ocaml",
2020-11-17 17:28:53 -05:00
files = { "src/parser.c", "src/scanner.cc" },
location = "interface",
2020-11-17 17:28:53 -05:00
},
filetype = "ocamlinterface",
2023-03-11 15:25:11 -05:00
maintainers = { "@undu" },
2020-11-17 17:28:53 -05:00
}
list.ocamllex = {
2021-07-28 19:52:29 +02:00
install_info = {
url = "https://github.com/atom-ocaml/tree-sitter-ocamllex",
files = { "src/parser.c", "src/scanner.cc" },
2021-07-28 19:52:29 +02:00
requires_generate_from_grammar = true,
},
maintainers = { "@undu" },
2021-01-05 12:37:16 +01:00
}
list.org = {
install_info = {
url = "https://github.com/milisims/tree-sitter-org",
files = { "src/parser.c", "src/scanner.cc" },
},
}
list.pascal = {
2021-02-05 13:45:26 +07:00
install_info = {
url = "https://github.com/Isopod/tree-sitter-pascal.git",
files = { "src/parser.c" },
2021-02-05 13:45:26 +07:00
},
maintainers = { "@Isopod" },
2021-02-05 13:45:26 +07:00
}
2023-02-27 21:18:00 -05:00
list.passwd = {
install_info = {
url = "https://github.com/ath3/tree-sitter-passwd",
files = { "src/parser.c" },
},
maintainers = { "@amaanq" },
}
list.perl = {
2021-03-09 21:06:07 +02:00
install_info = {
url = "https://github.com/ganezdragon/tree-sitter-perl",
2022-05-28 15:43:28 +02:00
files = { "src/parser.c", "src/scanner.cc" },
2021-03-09 21:06:07 +02:00
},
maintainers = { "@lcrownover" },
2021-03-09 21:06:07 +02:00
}
list.php = {
2021-03-21 00:03:20 +01:00
install_info = {
url = "https://github.com/tree-sitter/tree-sitter-php",
files = { "src/parser.c", "src/scanner.cc" },
2021-03-21 00:03:20 +01:00
},
maintainers = { "@tk-shirasaka" },
2021-03-21 00:03:20 +01:00
}
-- Parsers for injections
list.phpdoc = {
2022-04-19 06:31:31 +02:00
install_info = {
url = "https://github.com/claytonrcarter/tree-sitter-phpdoc",
2022-04-19 06:31:31 +02:00
files = { "src/parser.c", "src/scanner.c" },
generate_requires_npm = true,
2022-04-19 06:31:31 +02:00
},
maintainers = { "@mikehaertl" },
experimental = true,
2022-04-19 06:31:31 +02:00
}
list.pioasm = {
2021-03-21 00:03:20 +01:00
install_info = {
url = "https://github.com/leo60228/tree-sitter-pioasm",
files = { "src/parser.c", "src/scanner.c" },
2021-03-21 00:03:20 +01:00
},
maintainers = { "@leo60228" },
2021-03-21 00:03:20 +01:00
}
2023-02-28 00:14:08 -05:00
list.po = {
install_info = {
url = "https://github.com/erasin/tree-sitter-po",
files = { "src/parser.c" },
},
maintainers = { "@amaanq" },
}
list.poe_filter = {
2021-03-21 00:03:20 +01:00
install_info = {
url = "https://github.com/ObserverOfTime/tree-sitter-poe-filter",
2021-03-21 00:03:20 +01:00
files = { "src/parser.c" },
},
filetype = "poefilter",
2023-03-11 15:25:11 -05:00
maintainers = { "@ObserverOfTime" },
readme_name = "Path of Exile item filter",
2023-03-11 15:25:11 -05:00
experimental = true,
2021-03-21 13:26:33 -04:00
}
2023-03-26 18:28:54 -04:00
list.pony = {
install_info = {
url = "https://github.com/amaanq/tree-sitter-pony",
files = { "src/parser.c", "src/scanner.c" },
},
maintainers = { "@amaanq", "@mfelsche" },
}
list.prisma = {
2021-03-23 06:18:43 +05:30
install_info = {
url = "https://github.com/victorhqc/tree-sitter-prisma",
2021-07-04 16:12:17 -05:00
files = { "src/parser.c" },
},
maintainers = { "@elianiva" },
}
list.proto = {
install_info = {
url = "https://github.com/mitchellh/tree-sitter-proto",
files = { "src/parser.c" },
2021-03-23 06:18:43 +05:30
},
maintainers = { "@fsouza" },
2021-03-23 06:18:43 +05:30
}
list.prql = {
install_info = {
url = "https://github.com/PRQL/tree-sitter-prql",
files = { "src/parser.c" },
},
maintainers = { "@matthias-Q" },
}
list.pug = {
install_info = {
url = "https://github.com/zealot128/tree-sitter-pug",
2021-07-04 16:12:17 -05:00
files = { "src/parser.c", "src/scanner.cc" },
},
maintainers = { "@zealot128" },
experimental = true,
}
list.python = {
2021-06-20 21:37:07 +02:00
install_info = {
url = "https://github.com/tree-sitter/tree-sitter-python",
2021-07-04 16:12:17 -05:00
files = { "src/parser.c", "src/scanner.cc" },
2021-06-20 21:37:07 +02:00
},
maintainers = { "@stsewd", "@theHamsta" },
2021-06-20 21:37:07 +02:00
}
list.ql = {
2021-04-18 09:57:02 +02:00
install_info = {
url = "https://github.com/tree-sitter/tree-sitter-ql",
files = { "src/parser.c" },
},
maintainers = { "@pwntester" },
}
2023-03-01 02:42:30 -05:00
list.qmldir = {
install_info = {
url = "https://github.com/Decodetalkers/tree-sitter-qmldir",
files = { "src/parser.c" },
},
maintainers = { "@amaanq" },
}
list.qmljs = {
install_info = {
url = "https://github.com/yuja/tree-sitter-qmljs",
2021-04-18 09:57:02 +02:00
files = { "src/parser.c", "src/scanner.c" },
},
filetype = "qml",
maintainers = { "@Decodetalkers" },
2021-04-18 09:57:02 +02:00
}
list.query = {
install_info = {
url = "https://github.com/nvim-treesitter/tree-sitter-query",
2022-09-28 14:49:51 +02:00
files = { "src/parser.c" },
},
maintainers = { "@steelsojka" },
2023-03-11 15:25:11 -05:00
readme_name = "Tree-Sitter query language",
}
list.r = {
2021-08-24 18:23:16 -04:00
install_info = {
url = "https://github.com/r-lib/tree-sitter-r",
files = { "src/parser.c", "src/scanner.cc" },
2021-08-24 18:23:16 -04:00
},
maintainers = { "@echasnovski" },
2021-08-24 18:23:16 -04:00
}
list.racket = {
install_info = {
url = "https://github.com/6cdh/tree-sitter-racket",
files = { "src/parser.c", "src/scanner.cc" },
},
maintainers = { "@6cdh" },
}
list.rasi = {
2021-09-18 21:15:37 +01:00
install_info = {
url = "https://github.com/Fymyte/tree-sitter-rasi",
2021-09-18 21:15:37 +01:00
files = { "src/parser.c" },
},
maintainers = { "@Fymyte" },
2021-09-18 21:15:37 +01:00
}
list.regex = {
2022-01-15 16:35:55 +02:00
install_info = {
url = "https://github.com/tree-sitter/tree-sitter-regex",
2022-01-15 16:35:55 +02:00
files = { "src/parser.c" },
},
maintainers = { "@theHamsta" },
2022-01-15 16:35:55 +02:00
}
list.rego = {
2021-10-02 17:09:40 -04:00
install_info = {
url = "https://github.com/FallenAngel97/tree-sitter-rego",
2021-10-02 17:09:40 -04:00
files = { "src/parser.c" },
},
maintainers = { "@FallenAngel97" },
2021-10-02 17:09:40 -04:00
}
list.rnoweb = {
install_info = {
url = "https://github.com/bamonroe/tree-sitter-rnoweb",
files = { "src/parser.c", "src/scanner.c" },
},
maintainers = { "@bamonroe" },
}
2021-12-14 10:47:47 +00:00
2023-02-04 15:42:12 -05:00
list.ron = {
install_info = {
url = "https://github.com/amaanq/tree-sitter-ron",
files = { "src/parser.c", "src/scanner.c" },
},
maintainers = { "@amaanq" },
}
list.rst = {
2021-11-01 06:20:58 +07:00
install_info = {
url = "https://github.com/stsewd/tree-sitter-rst",
files = { "src/parser.c", "src/scanner.c" },
2021-11-01 06:20:58 +07:00
},
maintainers = { "@stsewd" },
}
list.ruby = {
2021-12-14 10:47:47 +00:00
install_info = {
url = "https://github.com/tree-sitter/tree-sitter-ruby",
files = { "src/parser.c", "src/scanner.cc" },
2021-12-14 10:47:47 +00:00
},
maintainers = { "@TravonteD" },
2021-12-14 10:47:47 +00:00
}
list.rust = {
install_info = {
url = "https://github.com/tree-sitter/tree-sitter-rust",
files = { "src/parser.c", "src/scanner.c" },
},
2023-04-21 04:25:45 -04:00
maintainers = { "@amaanq" },
}
list.scala = {
2021-12-14 13:45:56 +01:00
install_info = {
url = "https://github.com/tree-sitter/tree-sitter-scala",
2022-01-07 16:49:33 +01:00
files = { "src/parser.c", "src/scanner.c" },
2021-12-14 13:45:56 +01:00
},
maintainers = { "@stevanmilic" },
2021-12-14 13:45:56 +01:00
}
list.scheme = {
2021-11-23 01:06:51 +01:00
install_info = {
url = "https://github.com/6cdh/tree-sitter-scheme",
files = { "src/parser.c" },
2021-11-23 01:06:51 +01:00
},
maintainers = { "@6cdh" },
2021-11-23 01:06:51 +01:00
}
list.scss = {
2021-08-29 19:31:37 +02:00
install_info = {
url = "https://github.com/serenadeai/tree-sitter-scss",
files = { "src/parser.c", "src/scanner.c" },
},
maintainers = { "@elianiva" },
}
list.slint = {
install_info = {
url = "https://github.com/jrmoulton/tree-sitter-slint",
files = { "src/parser.c" },
2021-08-29 19:31:37 +02:00
},
maintainers = { "@jrmoulton" },
experimental = true,
2021-08-29 19:31:37 +02:00
}
list.smali = {
2022-01-28 19:13:39 -03:00
install_info = {
2023-02-20 08:10:43 -05:00
url = "https://git.sr.ht/~yotam/tree-sitter-smali",
files = { "src/parser.c", "src/scanner.c" },
2022-01-28 19:13:39 -03:00
},
maintainers = { "@amaanq" },
2022-01-28 19:13:39 -03:00
}
list.smithy = {
install_info = {
url = "https://github.com/indoorvivants/tree-sitter-smithy",
files = { "src/parser.c" },
},
maintainers = { "@amaanq", "@keynmol" },
}
2022-03-10 19:14:49 +08:00
list.solidity = {
install_info = {
url = "https://github.com/JoranHonig/tree-sitter-solidity",
2022-03-10 19:14:49 +08:00
files = { "src/parser.c" },
},
maintainers = { "@amaanq" },
2022-03-10 19:14:49 +08:00
}
list.sparql = {
2022-03-14 10:01:14 -07:00
install_info = {
url = "https://github.com/BonaBeavis/tree-sitter-sparql",
files = { "src/parser.c" },
2022-03-14 10:01:14 -07:00
},
maintainers = { "@BonaBeavis" },
2022-03-14 10:01:14 -07:00
}
list.sql = {
2022-03-26 18:27:11 +01:00
install_info = {
url = "https://github.com/derekstride/tree-sitter-sql",
2022-03-26 18:27:11 +01:00
files = { "src/parser.c" },
branch = "gh-pages",
2022-03-26 18:27:11 +01:00
},
maintainers = { "@derekstride" },
2022-03-26 18:27:11 +01:00
}
2023-03-06 04:46:43 -05:00
list.squirrel = {
install_info = {
url = "https://github.com/amaanq/tree-sitter-squirrel",
files = { "src/parser.c", "src/scanner.c" },
},
maintainers = { "@amaanq" },
}
2023-02-18 15:00:37 -05:00
list.starlark = {
install_info = {
url = "https://github.com/amaanq/tree-sitter-starlark",
files = { "src/parser.c", "src/scanner.cc" },
},
filetype = "bzl",
maintainers = { "@amaanq" },
}
list.supercollider = {
2022-04-07 20:34:19 +08:00
install_info = {
url = "https://github.com/madskjeldgaard/tree-sitter-supercollider",
files = { "src/parser.c", "src/scanner.c" },
2022-04-07 20:34:19 +08:00
},
maintainers = { "@madskjeldgaard" },
2022-04-07 20:34:19 +08:00
}
list.surface = {
2023-01-23 03:00:32 -05:00
install_info = {
url = "https://github.com/connorlay/tree-sitter-surface",
2023-01-23 03:00:32 -05:00
files = { "src/parser.c" },
},
filetype = "sface",
maintainers = { "@connorlay" },
2023-01-23 03:00:32 -05:00
}
list.svelte = {
2022-04-11 18:14:04 +02:00
install_info = {
url = "https://github.com/Himujjal/tree-sitter-svelte",
2023-01-09 21:18:48 +01:00
files = { "src/parser.c", "src/scanner.c" },
2022-04-11 18:14:04 +02:00
},
maintainers = { "@elianiva" },
2022-04-11 18:14:04 +02:00
}
list.swift = {
install_info = {
url = "https://github.com/alex-pinkus/tree-sitter-swift",
2023-01-09 21:28:03 +01:00
files = { "src/parser.c", "src/scanner.c" },
requires_generate_from_grammar = true,
},
maintainers = { "@alex-pinkus" },
}
list.sxhkdrc = {
2022-04-26 17:53:51 +01:00
install_info = {
url = "https://github.com/RaafatTurki/tree-sitter-sxhkdrc",
2022-04-26 17:53:51 +01:00
files = { "src/parser.c" },
},
maintainers = { "@RaafatTurki" },
2022-04-26 17:53:51 +01:00
}
list.t32 = {
install_info = {
url = "https://codeberg.org/xasc/tree-sitter-t32",
files = { "src/parser.c", "src/scanner.c" },
revision = "675cd7de4eb80f2faa1e6d3bc9ee195fa9ef9790",
},
maintainers = { "@xasc" },
}
2023-03-16 07:00:30 -04:00
list.tablegen = {
install_info = {
url = "https://github.com/amaanq/tree-sitter-tablegen",
files = { "src/parser.c", "src/scanner.c" },
},
maintainers = { "@amaanq" },
}
list.teal = {
install_info = {
url = "https://github.com/euclidianAce/tree-sitter-teal",
files = { "src/parser.c", "src/scanner.c" },
requires_generate_from_grammar = true,
},
maintainers = { "@euclidianAce" },
}
list.terraform = {
install_info = {
url = "https://github.com/MichaHoffmann/tree-sitter-hcl",
files = { "src/parser.c", "src/scanner.cc" },
location = "dialects/terraform",
},
maintainers = { "@MichaHoffmann" },
}
2023-01-21 07:39:15 -05:00
list.thrift = {
install_info = {
url = "https://github.com/duskmoon314/tree-sitter-thrift",
files = { "src/parser.c" },
},
maintainers = { "@amaanq", "@duskmoon314" },
}
2022-06-14 17:24:28 +02:00
list.tiger = {
install_info = {
url = "https://github.com/ambroisie/tree-sitter-tiger",
files = { "src/parser.c", "src/scanner.c" },
},
maintainers = { "@ambroisie" },
}
list.tlaplus = {
2022-11-06 17:44:50 +01:00
install_info = {
url = "https://github.com/tlaplus-community/tree-sitter-tlaplus",
files = { "src/parser.c", "src/scanner.cc" },
2022-11-06 17:44:50 +01:00
},
filetype = "tla",
2023-03-11 15:25:11 -05:00
maintainers = { "@ahelwer", "@susliko" },
2022-11-06 17:44:50 +01:00
}
list.todotxt = {
2022-08-31 03:44:53 +03:00
install_info = {
url = "https://github.com/arnarg/tree-sitter-todotxt.git",
2022-09-01 00:13:19 +03:00
files = { "src/parser.c" },
},
maintainers = { "@arnarg" },
experimental = true,
2022-08-31 03:44:53 +03:00
}
list.toml = {
2022-08-15 23:36:56 +02:00
install_info = {
url = "https://github.com/ikatyang/tree-sitter-toml",
files = { "src/parser.c", "src/scanner.c" },
generate_requires_npm = true,
2022-08-15 23:36:56 +02:00
},
maintainers = { "@tk-shirasaka" },
2022-08-15 23:36:56 +02:00
}
list.tsx = {
install_info = {
url = "https://github.com/tree-sitter/tree-sitter-typescript",
files = { "src/parser.c", "src/scanner.c" },
location = "tsx",
generate_requires_npm = true,
},
filetype = "typescriptreact",
maintainers = { "@steelsojka" },
}
list.turtle = {
2022-09-08 14:48:02 +03:00
install_info = {
url = "https://github.com/BonaBeavis/tree-sitter-turtle",
2022-09-08 14:48:02 +03:00
files = { "src/parser.c" },
},
maintainers = { "@BonaBeavis" },
2022-09-08 14:48:02 +03:00
}
list.twig = {
install_info = {
url = "https://github.com/gbprod/tree-sitter-twig",
files = { "src/parser.c" },
},
maintainers = { "@gbprod" },
}
list.typescript = {
2022-11-24 08:54:54 +01:00
install_info = {
url = "https://github.com/tree-sitter/tree-sitter-typescript",
2022-11-24 08:54:54 +01:00
files = { "src/parser.c", "src/scanner.c" },
location = "typescript",
generate_requires_npm = true,
2022-11-24 08:54:54 +01:00
},
maintainers = { "@steelsojka" },
2022-11-24 08:54:54 +01:00
}
2023-02-20 18:05:10 +01:00
list.ungrammar = {
install_info = {
url = "https://github.com/Philipp-M/tree-sitter-ungrammar",
files = { "src/parser.c" },
},
maintainers = { "@Philipp-M", "@amaanq" },
}
2023-03-07 04:32:20 -05:00
list.uxntal = {
install_info = {
url = "https://github.com/amaanq/tree-sitter-uxntal",
files = { "src/parser.c", "src/scanner.c" },
},
filetype = "tal",
maintainers = { "@amaanq" },
readme_name = "uxn tal",
}
list.v = {
2022-09-11 09:48:25 +02:00
install_info = {
url = "https://github.com/vlang/vls",
files = { "src/parser.c", "src/scanner.c" },
location = "tree_sitter_v",
2022-09-11 09:48:25 +02:00
},
2023-03-17 13:57:22 +01:00
filetype = "vlang",
maintainers = { "@kkharji" },
2022-09-11 09:48:25 +02:00
}
list.vala = {
install_info = {
url = "https://github.com/vala-lang/tree-sitter-vala",
files = { "src/parser.c" },
},
maintainers = { "@Prince781" },
}
list.verilog = {
install_info = {
url = "https://github.com/tree-sitter/tree-sitter-verilog",
files = { "src/parser.c" },
},
maintainers = { "@zegervdv" },
}
2022-11-13 08:33:54 -03:00
list.vhs = {
install_info = {
url = "https://github.com/charmbracelet/tree-sitter-vhs",
files = { "src/parser.c" },
},
filetype = "tape",
2023-03-11 15:25:11 -05:00
maintainers = { "@caarlos0" },
2022-11-13 08:33:54 -03:00
}
list.vim = {
2022-09-26 19:25:26 +03:00
install_info = {
url = "https://github.com/neovim/tree-sitter-vim",
2022-09-26 19:25:26 +03:00
files = { "src/parser.c", "src/scanner.c" },
},
maintainers = { "@clason" },
2022-09-26 19:25:26 +03:00
}
2023-04-01 15:58:48 +02:00
list.vimdoc = {
install_info = {
url = "https://github.com/neovim/tree-sitter-vimdoc",
files = { "src/parser.c" },
},
filetype = "help",
maintainers = { "@clason" },
}
list.vue = {
2022-10-26 12:58:34 +03:00
install_info = {
url = "https://github.com/ikatyang/tree-sitter-vue",
2022-10-26 12:58:34 +03:00
files = { "src/parser.c", "src/scanner.cc" },
},
maintainers = { "@WhyNotHugo" },
2022-09-20 02:03:08 +03:00
}
list.wgsl = {
2022-10-21 19:48:15 +03:00
install_info = {
url = "https://github.com/szebniok/tree-sitter-wgsl",
files = { "src/parser.c", "src/scanner.c" },
2022-10-21 19:48:15 +03:00
},
maintainers = { "@szebniok" },
2022-10-21 19:48:15 +03:00
}
list.wgsl_bevy = {
2022-10-02 18:12:30 +02:00
install_info = {
url = "https://github.com/theHamsta/tree-sitter-wgsl-bevy",
files = { "src/parser.c", "src/scanner.c" },
generate_requires_npm = true,
2022-10-02 18:12:30 +02:00
},
maintainers = { "@theHamsta" },
2022-10-02 18:12:30 +02:00
}
list.yaml = {
2022-10-03 19:41:45 +03:00
install_info = {
url = "https://github.com/ikatyang/tree-sitter-yaml",
files = { "src/parser.c", "src/scanner.cc" },
2022-10-03 19:41:45 +03:00
},
maintainers = { "@stsewd" },
2022-10-03 19:41:45 +03:00
}
list.yang = {
install_info = {
url = "https://github.com/Hubro/tree-sitter-yang",
files = { "src/parser.c" },
},
maintainers = { "@Hubro" },
}
2023-02-20 17:55:06 +01:00
list.yuck = {
install_info = {
url = "https://github.com/Philipp-M/tree-sitter-yuck",
files = { "src/parser.c", "src/scanner.c" },
},
maintainers = { "@Philipp-M", "@amaanq" },
}
list.zig = {
2022-10-08 21:25:05 +03:00
install_info = {
url = "https://github.com/maxxnino/tree-sitter-zig",
2022-10-08 21:25:05 +03:00
files = { "src/parser.c" },
},
maintainers = { "@maxxnino" },
2022-10-08 21:25:05 +03:00
}
local M = {
2021-07-04 16:12:17 -05:00
list = list,
filetype_to_parsername = filetype_to_parsername,
}
local function get_lang(ft)
if new_lang_api then
return ts.language.get_lang(ft)
end
return filetype_to_parsername[ft]
end
function M.ft_to_lang(ft)
local result = get_lang(ft)
if result then
return result
else
ft = vim.split(ft, ".", { plain = true })[1]
return get_lang(ft) or ft
end
end
-- Get a list of all available parsers
---@return string[]
function M.available_parsers()
local parsers = vim.tbl_keys(M.list)
table.sort(parsers)
if vim.fn.executable "tree-sitter" == 1 and vim.fn.executable "node" == 1 then
return parsers
else
return vim.tbl_filter(function(p) ---@param p string
2021-07-04 16:12:17 -05:00
return not M.list[p].install_info.requires_generate_from_grammar
end, parsers)
end
end
function M.get_parser_configs()
return M.list
end
local parser_files
function M.reset_cache()
parser_files = setmetatable({}, {
__index = function(tbl, key)
2021-07-04 16:12:17 -05:00
rawset(tbl, key, api.nvim_get_runtime_file("parser/" .. key .. ".*", false))
return rawget(tbl, key)
2021-07-04 16:12:17 -05:00
end,
})
end
M.reset_cache()
function M.has_parser(lang)
lang = lang or M.get_buf_lang(api.nvim_get_current_buf())
2021-07-04 16:12:17 -05:00
if not lang or #lang == 0 then
return false
end
-- HACK: nvim internal API
2021-07-04 16:12:17 -05:00
if vim._ts_has_language(lang) then
return true
end
return #parser_files[lang] > 0
end
2020-04-19 17:54:27 +02:00
function M.get_parser(bufnr, lang)
bufnr = bufnr or api.nvim_get_current_buf()
lang = lang or M.get_buf_lang(bufnr)
if M.has_parser(lang) then
return ts.get_parser(bufnr, lang)
end
end
-- @deprecated This is only kept for legacy purposes.
-- All root nodes should be accounted for.
function M.get_tree_root(bufnr)
bufnr = bufnr or api.nvim_get_current_buf()
return M.get_parser(bufnr):parse()[1]:root()
end
-- Gets the language of a given buffer
---@param bufnr number? or current buffer
---@return string
2020-07-10 21:47:50 +02:00
function M.get_buf_lang(bufnr)
bufnr = bufnr or api.nvim_get_current_buf()
return M.ft_to_lang(api.nvim_buf_get_option(bufnr, "ft"))
end
return M