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

2794 lines
64 KiB
Lua
Raw Normal View History

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
2022-10-31 10:52:52 +00:00
---@class ParserInfo
---@field install_info InstallInfo
---@field filetype string[]
2022-10-31 10:52:52 +00:00
---@field maintainers string[]
---@field tier integer|nil
---@field readme_note string|nil
2022-10-31 10:52:52 +00:00
local M = {}
2022-12-14 15:59:24 +01:00
M.tiers = { 'core', 'stable', 'community', 'unstable' }
---@type ParserInfo[]
M.configs = {
ada = {
install_info = {
url = 'https://github.com/briot/tree-sitter-ada',
files = { 'src/parser.c' },
},
maintainers = { '@briot' },
2023-11-24 10:25:47 +01:00
},
agda = {
install_info = {
url = 'https://github.com/tree-sitter/tree-sitter-agda',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@Decodetalkers' },
},
angular = {
install_info = {
url = 'https://github.com/dlvandenberg/tree-sitter-angular',
files = { 'src/parser.c', 'src/scanner.c' },
generate_requires_npm = true,
},
maintainers = { '@dlvandenberg' },
tier = 4,
},
apex = {
install_info = {
url = 'https://github.com/aheber/tree-sitter-sfapex',
files = { 'src/parser.c' },
location = 'apex',
},
maintainers = { '@aheber', '@xixiafinland' },
tier = 3,
},
arduino = {
install_info = {
url = 'https://github.com/ObserverOfTime/tree-sitter-arduino',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@ObserverOfTime' },
},
asm = {
install_info = {
url = 'https://github.com/RubixDev/tree-sitter-asm',
files = { 'src/parser.c' },
},
maintainers = { '@RubixDev' },
tier = 3,
},
astro = {
install_info = {
url = 'https://github.com/virchau13/tree-sitter-astro',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@virchau13' },
2022-07-07 22:33:47 +08:00
},
2022-06-04 11:11:34 +08:00
authzed = {
install_info = {
url = 'https://github.com/mleonidas/tree-sitter-authzed',
files = { 'src/parser.c' },
},
maintainers = { '@mattpolzin' },
tier = 3,
2022-06-04 11:11:34 +08:00
},
awk = {
install_info = {
url = 'https://github.com/Beaglefoot/tree-sitter-awk',
files = { 'src/parser.c', 'src/scanner.c' },
},
2023-03-22 05:24:56 -04:00
},
bash = {
install_info = {
url = 'https://github.com/tree-sitter/tree-sitter-bash',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@TravonteD' },
2022-04-06 21:04:19 +08:00
},
bass = {
install_info = {
url = 'https://github.com/vito/tree-sitter-bass',
files = { 'src/parser.c' },
},
maintainers = { '@amaanq' },
},
beancount = {
install_info = {
url = 'https://github.com/polarmutex/tree-sitter-beancount',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@polarmutex' },
2023-02-23 04:42:37 -05:00
},
bibtex = {
install_info = {
url = 'https://github.com/latex-lsp/tree-sitter-bibtex',
files = { 'src/parser.c' },
},
maintainers = { '@theHamsta', '@clason' },
tier = 3,
2023-08-17 00:49:36 -04:00
},
bicep = {
install_info = {
url = 'https://github.com/amaanq/tree-sitter-bicep',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@amaanq' },
},
bitbake = {
install_info = {
url = 'https://github.com/amaanq/tree-sitter-bitbake',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@amaanq' },
tier = 2,
},
blueprint = {
install_info = {
url = 'https://gitlab.com/gabmus/tree-sitter-blueprint.git',
files = { 'src/parser.c' },
},
maintainers = { '@gabmus' },
tier = 4,
},
bp = {
install_info = {
url = 'https://github.com/ambroisie/tree-sitter-bp',
files = { 'src/parser.c' },
},
maintainers = { '@ambroisie' },
tier = 3,
readme_note = 'Android Blueprint',
},
c = {
install_info = {
url = 'https://github.com/tree-sitter/tree-sitter-c',
files = { 'src/parser.c' },
},
maintainers = { '@amaanq' },
tier = 1,
},
c_sharp = {
install_info = {
url = 'https://github.com/tree-sitter/tree-sitter-c-sharp',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@amaanq' },
2023-07-06 21:42:51 -04:00
},
cairo = {
install_info = {
url = 'https://github.com/amaanq/tree-sitter-cairo',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@amaanq' },
tier = 2,
},
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
},
chatito = {
install_info = {
url = 'https://github.com/ObserverOfTime/tree-sitter-chatito',
files = { 'src/parser.c' },
},
maintainers = { '@ObserverOfTime' },
2024-12-06 21:41:37 +04:00
},
circom = {
install_info = {
url = 'https://github.com/Decurity/tree-sitter-circom',
files = { 'src/parser.c' },
},
maintainers = { '@alexandr-martirosyan' },
tier = 3,
2020-10-29 22:59:36 +09:00
},
clojure = {
install_info = {
url = 'https://github.com/sogaiu/tree-sitter-clojure',
files = { 'src/parser.c' },
},
maintainers = { '@NoahTheDuke' },
},
cmake = {
install_info = {
url = 'https://github.com/uyha/tree-sitter-cmake',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@uyha' },
},
comment = {
install_info = {
url = 'https://github.com/stsewd/tree-sitter-comment',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@stsewd' },
tier = 2,
2021-04-04 09:45:45 +02:00
},
commonlisp = {
install_info = {
url = 'https://github.com/theHamsta/tree-sitter-commonlisp',
files = { 'src/parser.c' },
generate_requires_npm = true,
},
maintainers = { '@theHamsta' },
},
cooklang = {
install_info = {
url = 'https://github.com/addcninblue/tree-sitter-cooklang',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@addcninblue' },
tier = 3,
},
corn = {
install_info = {
url = 'https://github.com/jakestanger/tree-sitter-corn',
files = { 'src/parser.c' },
},
maintainers = { '@jakestanger' },
tier = 3,
2023-02-23 18:44:10 -05:00
},
cpon = {
install_info = {
url = 'https://github.com/amaanq/tree-sitter-cpon',
files = { 'src/parser.c' },
},
maintainers = { '@amaanq' },
2020-07-15 16:03:21 +02:00
},
2021-06-09 18:47:31 +02:00
cpp = {
install_info = {
url = 'https://github.com/tree-sitter/tree-sitter-cpp',
files = { 'src/parser.c', 'src/scanner.c' },
generate_requires_npm = true,
},
maintainers = { '@theHamsta' },
},
css = {
install_info = {
url = 'https://github.com/tree-sitter/tree-sitter-css',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@TravonteD' },
2023-08-17 04:07:43 -04:00
},
csv = {
install_info = {
url = 'https://github.com/amaanq/tree-sitter-csv',
files = { 'src/parser.c' },
location = 'csv',
},
maintainers = { '@amaanq' },
tier = 2,
2021-06-09 18:47:31 +02:00
},
cuda = {
install_info = {
url = 'https://github.com/theHamsta/tree-sitter-cuda',
files = { 'src/parser.c', 'src/scanner.c' },
generate_requires_npm = true,
},
maintainers = { '@theHamsta' },
2023-03-04 04:31:11 -05:00
},
cue = {
install_info = {
url = 'https://github.com/eonpatapon/tree-sitter-cue',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@amaanq' },
},
cylc = {
install_info = {
url = 'https://github.com/elliotfontaine/tree-sitter-cylc',
files = { 'src/parser.c' },
},
maintainers = { '@elliotfontaine' },
tier = 3,
2021-10-01 11:33:33 +02:00
},
d = {
install_info = {
url = 'https://github.com/gdamore/tree-sitter-d',
files = { 'src/parser.c', 'src/scanner.c' },
},
tier = 2,
maintainers = { '@amaanq' },
2023-01-29 12:03:04 -05:00
},
dart = {
install_info = {
url = 'https://github.com/UserNobody14/tree-sitter-dart',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@akinsho' },
},
desktop = {
install_info = {
url = 'https://github.com/ValdezFOmar/tree-sitter-desktop',
files = { 'src/parser.c' },
},
maintainers = { '@ValdezFOmar' },
tier = 3,
2021-09-11 17:26:06 +02:00
},
devicetree = {
install_info = {
url = 'https://github.com/joelspadin/tree-sitter-devicetree',
files = { 'src/parser.c' },
},
maintainers = { '@jedrzejboczar' },
2023-02-23 16:06:47 -05:00
},
dhall = {
install_info = {
url = 'https://github.com/jbellerb/tree-sitter-dhall',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@amaanq' },
2022-06-15 01:15:25 +02:00
},
diff = {
install_info = {
url = 'https://github.com/the-mikedavis/tree-sitter-diff',
files = { 'src/parser.c' },
},
maintainers = { '@gbprod' },
2024-01-24 16:25:40 -08:00
},
disassembly = {
install_info = {
url = 'https://github.com/ColinKennedy/tree-sitter-disassembly',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@ColinKennedy' },
tier = 3,
},
djot = {
install_info = {
url = 'https://github.com/treeman/tree-sitter-djot',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@NoahTheDuke' },
tier = 3,
},
dockerfile = {
install_info = {
url = 'https://github.com/camdencheek/tree-sitter-dockerfile',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@camdencheek' },
},
dot = {
install_info = {
url = 'https://github.com/rydesun/tree-sitter-dot',
files = { 'src/parser.c' },
},
maintainers = { '@rydesun' },
2023-08-25 05:02:58 -04:00
},
doxygen = {
install_info = {
url = 'https://github.com/amaanq/tree-sitter-doxygen',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@amaanq' },
tier = 2,
2023-08-04 14:50:28 +03:00
},
dtd = {
install_info = {
url = 'https://github.com/tree-sitter-grammars/tree-sitter-xml',
files = { 'src/parser.c', 'src/scanner.c' },
location = 'dtd',
},
maintainers = { '@ObserverOfTime' },
tier = 2,
},
earthfile = {
install_info = {
url = 'https://github.com/glehmann/tree-sitter-earthfile',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@glehmann' },
tier = 3,
},
ebnf = {
install_info = {
url = 'https://github.com/RubixDev/ebnf',
files = { 'src/parser.c' },
location = 'crates/tree-sitter-ebnf',
},
maintainers = { '@RubixDev' },
tier = 4,
},
editorconfig = {
install_info = {
url = 'https://github.com/ValdezFOmar/tree-sitter-editorconfig',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@ValdezFOmar' },
tier = 3,
2024-07-04 10:23:44 -07:00
},
eds = {
install_info = {
url = 'https://github.com/uyha/tree-sitter-eds',
files = { 'src/parser.c' },
},
maintainers = { '@uyha' },
tier = 3,
2023-09-10 14:38:10 +02:00
},
eex = {
install_info = {
url = 'https://github.com/connorlay/tree-sitter-eex',
files = { 'src/parser.c' },
},
maintainers = { '@connorlay' },
},
elixir = {
install_info = {
url = 'https://github.com/elixir-lang/tree-sitter-elixir',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@connorlay' },
},
elm = {
install_info = {
url = 'https://github.com/elm-tooling/tree-sitter-elm',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@zweimach' },
},
elsa = {
install_info = {
url = 'https://github.com/glapa-grossklag/tree-sitter-elsa',
files = { 'src/parser.c' },
},
maintainers = { '@glapa-grossklag', '@amaanq' },
},
elvish = {
install_info = {
url = 'https://github.com/elves/tree-sitter-elvish',
files = { 'src/parser.c' },
},
maintainers = { '@elves' },
},
embedded_template = {
install_info = {
url = 'https://github.com/tree-sitter/tree-sitter-embedded-template',
files = { 'src/parser.c' },
},
},
enforce = {
install_info = {
url = 'https://github.com/simonvic/tree-sitter-enforce',
files = { 'src/parser.c' },
},
maintainers = { '@simonvic' },
tier = 3,
},
erlang = {
install_info = {
url = 'https://github.com/WhatsApp/tree-sitter-erlang',
files = { 'src/parser.c', 'src/parser.c' },
},
maintainers = { '@filmor' },
2020-11-22 17:14:13 -06:00
},
facility = {
install_info = {
url = 'https://github.com/FacilityApi/tree-sitter-facility',
files = { 'src/parser.c' },
},
maintainers = { '@bryankenote' },
tier = 3,
2023-11-28 17:24:43 +00:00
},
faust = {
install_info = {
url = 'https://github.com/khiner/tree-sitter-faust',
files = { 'src/parser.c' },
},
maintainers = { '@khiner' },
tier = 3,
},
fennel = {
install_info = {
url = 'https://github.com/alexmozaidze/tree-sitter-fennel',
files = { 'src/parser.c', 'src/scanner.c' },
generate_requires_npm = true,
},
maintainers = { '@alexmozaidze' },
},
fidl = {
install_info = {
url = 'https://github.com/google/tree-sitter-fidl',
files = { 'src/parser.c' },
},
maintainers = { '@chaopeng' },
tier = 3,
2024-02-22 21:57:07 -05:00
},
firrtl = {
install_info = {
url = 'https://github.com/amaanq/tree-sitter-firrtl',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@amaanq' },
2023-03-26 18:37:15 -04:00
},
fish = {
install_info = {
url = 'https://github.com/ram02z/tree-sitter-fish',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@ram02z' },
2021-08-27 07:30:22 -07:00
},
foam = {
install_info = {
url = 'https://github.com/FoamScience/tree-sitter-foam',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@FoamScience' },
tier = 4,
},
forth = {
install_info = {
url = 'https://github.com/AlexanderBrevig/tree-sitter-forth',
files = { 'src/parser.c' },
},
maintainers = { '@amaanq' },
tier = 2,
2023-08-21 04:29:38 -04:00
},
fortran = {
install_info = {
url = 'https://github.com/stadelmanma/tree-sitter-fortran',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@amaanq' },
},
fsh = {
install_info = {
url = 'https://github.com/mgramigna/tree-sitter-fsh',
files = { 'src/parser.c' },
},
maintainers = { '@mgramigna' },
},
fsharp = {
install_info = {
url = 'https://github.com/ionide/tree-sitter-fsharp',
files = { 'src/parser.c', 'src/scanner.c' },
location = 'fsharp',
},
maintainers = { '@nsidorenco' },
tier = 3,
},
func = {
install_info = {
url = 'https://github.com/amaanq/tree-sitter-func',
files = { 'src/parser.c' },
},
maintainers = { '@amaanq' },
},
fusion = {
install_info = {
url = 'https://gitlab.com/jirgn/tree-sitter-fusion.git',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@jirgn' },
},
gap = {
install_info = {
url = 'https://github.com/gap-system/tree-sitter-gap',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@reiniscirpons' },
readme_name = 'GAP system',
tier = 3,
},
gaptst = {
install_info = {
url = 'https://github.com/gap-system/tree-sitter-gaptst',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@reiniscirpons' },
readme_name = 'GAP system test files',
requires = { 'gap' },
tier = 3,
},
gdscript = {
install_info = {
url = 'https://github.com/PrestonKnopp/tree-sitter-gdscript',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@PrestonKnopp' },
readme_note = 'Godot',
},
gdshader = {
install_info = {
url = 'https://github.com/GodOfAvacyn/tree-sitter-gdshader',
files = { 'src/parser.c' },
},
maintainers = { '@godofavacyn' },
tier = 3,
},
git_rebase = {
install_info = {
url = 'https://github.com/the-mikedavis/tree-sitter-git-rebase',
files = { 'src/parser.c' },
},
maintainers = { '@gbprod' },
2021-03-11 00:57:54 +01:00
},
2020-11-30 22:58:52 +01:00
gitattributes = {
install_info = {
url = 'https://github.com/ObserverOfTime/tree-sitter-gitattributes',
files = { 'src/parser.c' },
},
maintainers = { '@ObserverOfTime' },
},
gitcommit = {
install_info = {
url = 'https://github.com/gbprod/tree-sitter-gitcommit',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@gbprod' },
},
git_config = {
install_info = {
url = 'https://github.com/the-mikedavis/tree-sitter-git-config',
files = { 'src/parser.c' },
},
maintainers = { '@amaanq' },
readme_note = 'git_config',
2023-03-09 18:07:54 -05:00
},
gitignore = {
install_info = {
url = 'https://github.com/shunsambongi/tree-sitter-gitignore',
files = { 'src/parser.c' },
},
maintainers = { '@theHamsta' },
2020-12-28 17:55:07 +01:00
},
gleam = {
install_info = {
url = 'https://github.com/gleam-lang/tree-sitter-gleam',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@amaanq' },
},
glimmer = {
install_info = {
url = 'https://github.com/ember-tooling/tree-sitter-glimmer',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@NullVoxPopuli' },
readme_note = 'Glimmer and Ember',
2022-09-07 10:30:43 +02:00
},
glimmer_javascript = {
install_info = {
url = 'https://github.com/NullVoxPopuli/tree-sitter-glimmer-javascript',
files = { 'src/parser.c', 'src/scanner.c' },
generate_requires_npm = true,
},
maintainers = { '@NullVoxPopuli' },
requires = { 'javascript' },
tier = 3,
},
glimmer_typescript = {
install_info = {
url = 'https://github.com/NullVoxPopuli/tree-sitter-glimmer-typescript',
files = { 'src/parser.c', 'src/scanner.c' },
generate_requires_npm = true,
},
maintainers = { '@NullVoxPopuli' },
requires = { 'typescript' },
tier = 3,
},
glsl = {
install_info = {
url = 'https://github.com/theHamsta/tree-sitter-glsl',
files = { 'src/parser.c' },
generate_requires_npm = true,
},
maintainers = { '@theHamsta' },
},
gn = {
install_info = {
url = 'https://github.com/amaanq/tree-sitter-gn',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@amaanq' },
readme_name = 'GN (Generate Ninja)',
tier = 2,
2023-10-22 00:37:11 -04:00
},
gnuplot = {
install_info = {
url = 'https://github.com/dpezto/tree-sitter-gnuplot',
files = { 'src/parser.c' },
},
maintainers = { '@dpezto' },
tier = 3,
},
go = {
install_info = {
url = 'https://github.com/tree-sitter/tree-sitter-go',
files = { 'src/parser.c' },
},
maintainers = { '@theHamsta', '@WinWisely268' },
},
goctl = {
install_info = {
url = 'https://github.com/chaozwn/tree-sitter-goctl',
files = { 'src/parser.c' },
},
maintainers = { '@chaozwn' },
tier = 3,
2024-07-07 23:27:21 +08:00
},
godot_resource = {
install_info = {
url = 'https://github.com/PrestonKnopp/tree-sitter-godot-resource',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@pierpo' },
readme_note = 'Godot Resources',
2021-03-27 18:10:31 +07:00
},
gomod = {
install_info = {
url = 'https://github.com/camdencheek/tree-sitter-go-mod',
files = { 'src/parser.c' },
},
maintainers = { '@camdencheek' },
2020-12-07 08:17:37 +01:00
},
gosum = {
install_info = {
url = 'https://github.com/amaanq/tree-sitter-go-sum',
files = { 'src/parser.c' },
},
maintainers = { '@amaanq' },
2023-02-03 10:14:13 -05:00
},
gowork = {
install_info = {
url = 'https://github.com/omertuc/tree-sitter-go-work',
files = { 'src/parser.c' },
},
maintainers = { '@omertuc' },
2021-05-14 21:23:58 +02:00
},
graphql = {
install_info = {
url = 'https://github.com/bkegley/tree-sitter-graphql',
files = { 'src/parser.c' },
},
maintainers = { '@bkegley' },
},
gotmpl = {
install_info = {
url = 'https://github.com/ngalaiko/tree-sitter-go-template',
files = { 'src/parser.c' },
},
maintainers = { '@qvalentin' },
tier = 3,
2023-08-15 21:36:44 +03:00
},
gpg = {
install_info = {
url = 'https://github.com/ObserverOfTime/tree-sitter-gpg-config',
files = { 'src/parser.c' },
},
maintainers = { '@ObserverOfTime' },
tier = 2,
},
gren = {
install_info = {
files = { 'src/parser.c', 'src/scanner.c' },
url = 'https://github.com/MaeBrooks/tree-sitter-gren',
},
maintainers = { '@MaeBrooks' },
tier = 3,
2023-06-19 21:18:42 +08:00
},
groovy = {
install_info = {
url = 'https://github.com/murtaza64/tree-sitter-groovy',
files = { 'src/parser.c' },
},
maintainers = { '@murtaza64' },
tier = 3,
2022-02-05 09:38:29 -08:00
},
gstlaunch = {
install_info = {
url = 'https://github.com/theHamsta/tree-sitter-gstlaunch',
files = { 'src/parser.c' },
},
maintainers = { '@theHamsta' },
tier = 2,
},
hack = {
install_info = {
url = 'https://github.com/slackhq/tree-sitter-hack',
files = { 'src/parser.c', 'src/scanner.c' },
},
},
hare = {
install_info = {
url = 'https://github.com/amaanq/tree-sitter-hare',
files = { 'src/parser.c' },
},
maintainers = { '@amaanq' },
2023-03-11 03:02:30 -05:00
},
haskell = {
install_info = {
url = 'https://github.com/tree-sitter/tree-sitter-haskell',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@mrcjkb' },
},
haskell_persistent = {
install_info = {
url = 'https://github.com/MercuryTechnologies/tree-sitter-haskell-persistent',
files = { 'src/parser.c', 'src/scanner.c' },
},
filetype = 'haskell.persistent',
maintainers = { '@lykahb' },
},
hcl = {
install_info = {
url = 'https://github.com/MichaHoffmann/tree-sitter-hcl',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@MichaHoffmann' },
},
heex = {
install_info = {
url = 'https://github.com/connorlay/tree-sitter-heex',
files = { 'src/parser.c' },
},
maintainers = { '@connorlay' },
},
helm = {
install_info = {
url = 'https://github.com/ngalaiko/tree-sitter-go-template',
location = 'dialects/helm',
files = { 'src/parser.c' },
},
maintainers = { '@qvalentin' },
tier = 3,
},
hjson = {
install_info = {
url = 'https://github.com/winston0410/tree-sitter-hjson',
files = { 'src/parser.c' },
generate_requires_npm = true,
},
maintainers = { '@winston0410' },
},
hlsl = {
install_info = {
url = 'https://github.com/theHamsta/tree-sitter-hlsl',
files = { 'src/parser.c', 'src/scanner.c' },
generate_requires_npm = true,
},
maintainers = { '@theHamsta' },
},
hlsplaylist = {
install_info = {
url = 'https://github.com/Freed-Wu/tree-sitter-hlsplaylist',
files = { 'src/parser.c' },
},
maintainers = { '@Freed-Wu' },
tier = 3,
},
hocon = {
install_info = {
url = 'https://github.com/antosha417/tree-sitter-hocon',
files = { 'src/parser.c' },
generate_requires_npm = true,
},
maintainers = { '@antosha417' },
},
hoon = {
install_info = {
url = 'https://github.com/urbit-pilled/tree-sitter-hoon',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@urbit-pilled' },
tier = 4,
2022-04-19 23:50:32 +04:30
},
html = {
install_info = {
url = 'https://github.com/tree-sitter/tree-sitter-html',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@TravonteD' },
2021-07-04 16:12:17 -05:00
},
htmldjango = {
install_info = {
url = 'https://github.com/interdependence/tree-sitter-htmldjango',
files = { 'src/parser.c' },
},
maintainers = { '@ObserverOfTime' },
tier = 4,
},
http = {
install_info = {
url = 'https://github.com/rest-nvim/tree-sitter-http',
files = { 'src/parser.c' },
},
maintainers = { '@amaanq', '@NTBBloodbath' },
},
hurl = {
install_info = {
url = 'https://github.com/pfeiferj/tree-sitter-hurl',
files = { 'src/parser.c' },
},
maintainers = { '@pfeiferj' },
tier = 3,
},
hyprlang = {
install_info = {
url = 'https://github.com/luckasRanarison/tree-sitter-hyprlang',
files = { 'src/parser.c' },
},
maintainers = { '@luckasRanarison' },
tier = 3,
2024-04-28 16:26:39 +08:00
},
idl = {
install_info = {
url = 'https://github.com/cathaysia/tree-sitter-idl',
files = { 'src/parser.c' },
},
maintainers = { '@cathaysia' },
tier = 3,
},
idris = {
install_info = {
url = 'https://github.com/kayhide/tree-sitter-idris',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@srghma' },
tier = 3,
2022-02-28 14:07:23 +01:00
},
ini = {
install_info = {
url = 'https://github.com/justinmk/tree-sitter-ini',
files = { 'src/parser.c' },
},
maintainers = { '@theHamsta' },
tier = 4,
2024-05-03 01:13:43 +02:00
},
inko = {
install_info = {
url = 'https://github.com/inko-lang/tree-sitter-inko',
files = { 'src/parser.c' },
},
maintainers = { '@yorickpeterse' },
tier = 3,
},
ipkg = {
install_info = {
url = 'https://github.com/srghma/tree-sitter-ipkg',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@srghma' },
tier = 3,
},
ispc = {
install_info = {
url = 'https://github.com/fab4100/tree-sitter-ispc',
files = { 'src/parser.c' },
generate_requires_npm = true,
},
maintainers = { '@fab4100' },
2023-04-22 22:18:01 +09:00
},
janet_simple = {
install_info = {
url = 'https://github.com/sogaiu/tree-sitter-janet-simple',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@sogaiu' },
},
java = {
install_info = {
url = 'https://github.com/tree-sitter/tree-sitter-java',
files = { 'src/parser.c' },
},
maintainers = { '@p00f' },
},
javascript = {
install_info = {
url = 'https://github.com/tree-sitter/tree-sitter-javascript',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@steelsojka' },
},
jinja = {
install_info = {
url = 'https://github.com/cathaysia/tree-sitter-jinja',
location = 'tree-sitter-jinja',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@cathaysia' },
readme_note = 'basic highlighting',
tier = 3,
},
jinja_inline = {
install_info = {
url = 'https://github.com/cathaysia/tree-sitter-jinja',
location = 'tree-sitter-jinja_inline',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@cathaysia' },
readme_note = 'needed for full highlighting',
tier = 3,
2021-07-04 16:12:17 -05:00
},
jq = {
install_info = {
url = 'https://github.com/flurie/tree-sitter-jq',
files = { 'src/parser.c' },
},
maintainers = { '@ObserverOfTime' },
},
jsdoc = {
install_info = {
url = 'https://github.com/tree-sitter/tree-sitter-jsdoc',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@steelsojka' },
},
json = {
install_info = {
url = 'https://github.com/tree-sitter/tree-sitter-json',
files = { 'src/parser.c' },
},
maintainers = { '@steelsojka' },
},
json5 = {
install_info = {
url = 'https://github.com/Joakker/tree-sitter-json5',
files = { 'src/parser.c' },
},
maintainers = { '@Joakker' },
2023-01-31 09:14:58 -05:00
},
jsonc = {
install_info = {
url = 'https://gitlab.com/WhyNotHugo/tree-sitter-jsonc.git',
files = { 'src/parser.c' },
generate_requires_npm = true,
},
maintainers = { '@WhyNotHugo' },
readme_note = 'JSON with comments',
2021-07-04 16:12:17 -05:00
},
jsonnet = {
install_info = {
url = 'https://github.com/sourcegraph/tree-sitter-jsonnet',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@nawordar' },
},
julia = {
install_info = {
url = 'https://github.com/tree-sitter/tree-sitter-julia',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@fredrikekre' },
tier = 3,
2024-03-03 21:02:10 +01:00
},
just = {
install_info = {
url = 'https://github.com/IndianBoy42/tree-sitter-just',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@Hubro' },
tier = 3,
2025-02-27 09:54:26 +01:00
},
kcl = {
install_info = {
url = 'https://github.com/kcl-lang/tree-sitter-kcl',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@bertbaron' },
tier = 2,
2023-08-31 05:28:16 -04:00
},
kconfig = {
install_info = {
url = 'https://github.com/amaanq/tree-sitter-kconfig',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@amaanq' },
tier = 2,
},
kdl = {
install_info = {
url = 'https://github.com/amaanq/tree-sitter-kdl',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@amaanq' },
},
kotlin = {
install_info = {
url = 'https://github.com/fwcd/tree-sitter-kotlin',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@SalBakraa' },
},
koto = {
install_info = {
url = 'https://github.com/koto-lang/tree-sitter-koto',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@irh' },
tier = 3,
},
kusto = {
install_info = {
url = 'https://github.com/Willem-J-an/tree-sitter-kusto',
files = { 'src/parser.c' },
},
maintainers = { '@Willem-J-an' },
tier = 3,
2021-02-28 17:40:35 -05:00
},
lalrpop = {
install_info = {
url = 'https://github.com/traxys/tree-sitter-lalrpop',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@traxys' },
2021-02-17 09:37:56 +01:00
},
latex = {
install_info = {
url = 'https://github.com/latex-lsp/tree-sitter-latex',
files = { 'src/parser.c', 'src/scanner.c' },
requires_generate_from_grammar = true,
},
maintainers = { '@theHamsta', '@clason' },
tier = 3,
},
ledger = {
install_info = {
url = 'https://github.com/cbarrete/tree-sitter-ledger',
files = { 'src/parser.c' },
},
maintainers = { '@cbarrete' },
2023-10-22 03:23:02 +02:00
},
leo = {
install_info = {
url = 'https://github.com/r001/tree-sitter-leo',
files = { 'src/parser.c' },
},
maintainers = { '@r001' },
tier = 3,
2021-07-19 07:44:03 +02:00
},
llvm = {
install_info = {
url = 'https://github.com/benwilliamgraham/tree-sitter-llvm',
files = { 'src/parser.c' },
},
maintainers = { '@benwilliamgraham' },
2023-11-19 04:10:52 -05:00
},
linkerscript = {
install_info = {
url = 'https://github.com/amaanq/tree-sitter-linkerscript',
files = { 'src/parser.c' },
},
maintainers = { '@amaanq' },
tier = 2,
},
liquid = {
install_info = {
url = 'https://github.com/hankthetank27/tree-sitter-liquid',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@hankthetank27' },
tier = 3,
},
liquidsoap = {
install_info = {
url = 'https://github.com/savonet/tree-sitter-liquidsoap',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@toots' },
tier = 3,
2023-03-19 08:09:12 -04:00
},
lua = {
install_info = {
url = 'https://github.com/MunifTanjim/tree-sitter-lua',
files = { 'src/parser.c', 'src/scanner.c' },
},
tier = 1,
maintainers = { '@muniftanjim' },
2023-03-03 05:33:20 -05:00
},
luadoc = {
install_info = {
url = 'https://github.com/amaanq/tree-sitter-luadoc',
files = { 'src/parser.c' },
},
maintainers = { '@amaanq' },
2023-04-27 04:25:19 -04:00
},
luap = {
install_info = {
url = 'https://github.com/amaanq/tree-sitter-luap',
files = { 'src/parser.c' },
},
maintainers = { '@amaanq' },
readme_note = 'Lua patterns',
2024-02-12 13:45:13 +08:00
},
luau = {
install_info = {
url = 'https://github.com/amaanq/tree-sitter-luau',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@amaanq' },
},
2020-07-26 09:38:53 -05:00
m68k = {
install_info = {
url = 'https://github.com/grahambates/tree-sitter-m68k',
files = { 'src/parser.c' },
},
maintainers = { '@grahambates' },
},
2020-08-16 20:11:56 -04:00
make = {
install_info = {
url = 'https://github.com/alemuller/tree-sitter-make',
files = { 'src/parser.c' },
},
maintainers = { '@lewis6991' },
2020-10-04 19:39:12 -05:00
},
markdown = {
install_info = {
url = 'https://github.com/MDeiml/tree-sitter-markdown',
location = 'tree-sitter-markdown',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@MDeiml' },
readme_note = 'basic highlighting',
tier = 1,
2020-09-30 00:30:26 +02:00
},
markdown_inline = {
install_info = {
url = 'https://github.com/MDeiml/tree-sitter-markdown',
location = 'tree-sitter-markdown-inline',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@MDeiml' },
readme_note = 'needed for full highlighting',
tier = 1,
2023-02-28 00:16:21 -05:00
},
matlab = {
install_info = {
url = 'https://github.com/acristoffers/tree-sitter-matlab',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@acristoffers' },
2021-03-10 12:00:02 +01:00
},
2021-03-07 17:05:16 +01:00
menhir = {
install_info = {
url = 'https://github.com/Kerl13/tree-sitter-menhir',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@Kerl13' },
},
2022-02-01 12:51:31 +01:00
mermaid = {
install_info = {
url = 'https://github.com/monaqa/tree-sitter-mermaid',
files = { 'src/parser.c' },
},
tier = 4,
},
meson = {
install_info = {
url = 'https://github.com/Decodetalkers/tree-sitter-meson',
files = { 'src/parser.c' },
},
maintainers = { '@Decodetalkers' },
},
mlir = {
install_info = {
url = 'https://github.com/artagnon/tree-sitter-mlir',
files = { 'src/parser.c' },
requires_generate_from_grammar = true,
},
tier = 4,
maintainers = { '@artagnon' },
2024-02-14 10:15:10 +08:00
},
muttrc = {
install_info = {
url = 'https://github.com/neomutt/tree-sitter-muttrc',
files = { 'src/parser.c' },
},
maintainers = { '@Freed-Wu' },
tier = 3,
},
nasm = {
install_info = {
url = 'https://github.com/naclsn/tree-sitter-nasm',
files = { 'src/parser.c' },
},
maintainers = { '@ObserverOfTime' },
tier = 2,
2024-07-17 16:47:59 +09:00
},
nginx = {
install_info = {
url = 'https://github.com/opa-oz/tree-sitter-nginx',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@opa-oz' },
tier = 3,
},
nickel = {
install_info = {
url = 'https://github.com/nickel-lang/tree-sitter-nickel',
files = { 'src/parser.c', 'src/scanner.c' },
},
feat(nim): added nim parser and queries (#5556) * feat(nim): added nim parser and queries * correct scanner.cc to scanner.c Co-authored-by: Christian Clason <c.clason@uni-graz.at> * fix(nim): corrected capture for @function.macro * feat(nim highlights): added @field capture for discriminator field in object variant * bumped parser version, adapted highlights.scm and condensed injections.scm * improved nim_format_string highlights.scm * bump nim parser version again * removed overlap between queries for generalized strings in injections.scm * improved formattin] in nim_format_string/injections.scm Co-authored-by: ObserverOfTime <chronobserver@disroot.org> * corrected asm parser name in injections.scm Co-authored-by: ObserverOfTime <chronobserver@disroot.org> * improved formatting in highlights.scm Co-authored-by: ObserverOfTime <chronobserver@disroot.org> * removed @error capture from highlights.scm Co-authored-by: ObserverOfTime <chronobserver@disroot.org> * improved wording in comment in highlights.scm Co-authored-by: ObserverOfTime <chronobserver@disroot.org> * removed priority from (dot_expression left: @none) capture, since it's at the end of the file anyways * removed comments listing unused captures * reverted @error capture in nim_format_string/highlights.scm back to @none * condensed string alternatives in injections.scm Co-authored-by: ObserverOfTime <chronobserver@disroot.org> * condensed string alternatives in injections.scm (second part) Co-authored-by: ObserverOfTime <chronobserver@disroot.org> * added comment to explain reasoning behind priority use * swapped order of @punctuation.delimiter and @operator to get rid of superfluous comment * moved macro and template keywords to @preproc capture * removed priorities in highlights.scm and shifted @parameter capture behind @type capture * improved formatting in locals.scm * added queries for missing cases of @definition.namespace capture in locals.scm * removed some trailing whitespace * added @namespace queries for highlights.scm * bumped parser version again * removed superfluous @type capture * removed `@type`s `has-ancestor` and removed `(_ (_ ...` structures, but added priorities * added missing @constant capture to some queries in highlights.scm * fixed priority numbers so they work when injecting nim (in markdown) * added @none captures back to injection targets * added (assembly_statement) injection query * added indent queries * removed indents.scm again * added some missing queries for dot_generic_call, concept_declaration and pragma_statement --------- Co-authored-by: Christian Clason <c.clason@uni-graz.at> Co-authored-by: ObserverOfTime <chronobserver@disroot.org>
2023-10-30 12:35:51 +01:00
},
nim = {
install_info = {
url = 'https://github.com/alaviss/tree-sitter-nim',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@aMOPel' },
tier = 3,
feat(nim): added nim parser and queries (#5556) * feat(nim): added nim parser and queries * correct scanner.cc to scanner.c Co-authored-by: Christian Clason <c.clason@uni-graz.at> * fix(nim): corrected capture for @function.macro * feat(nim highlights): added @field capture for discriminator field in object variant * bumped parser version, adapted highlights.scm and condensed injections.scm * improved nim_format_string highlights.scm * bump nim parser version again * removed overlap between queries for generalized strings in injections.scm * improved formattin] in nim_format_string/injections.scm Co-authored-by: ObserverOfTime <chronobserver@disroot.org> * corrected asm parser name in injections.scm Co-authored-by: ObserverOfTime <chronobserver@disroot.org> * improved formatting in highlights.scm Co-authored-by: ObserverOfTime <chronobserver@disroot.org> * removed @error capture from highlights.scm Co-authored-by: ObserverOfTime <chronobserver@disroot.org> * improved wording in comment in highlights.scm Co-authored-by: ObserverOfTime <chronobserver@disroot.org> * removed priority from (dot_expression left: @none) capture, since it's at the end of the file anyways * removed comments listing unused captures * reverted @error capture in nim_format_string/highlights.scm back to @none * condensed string alternatives in injections.scm Co-authored-by: ObserverOfTime <chronobserver@disroot.org> * condensed string alternatives in injections.scm (second part) Co-authored-by: ObserverOfTime <chronobserver@disroot.org> * added comment to explain reasoning behind priority use * swapped order of @punctuation.delimiter and @operator to get rid of superfluous comment * moved macro and template keywords to @preproc capture * removed priorities in highlights.scm and shifted @parameter capture behind @type capture * improved formatting in locals.scm * added queries for missing cases of @definition.namespace capture in locals.scm * removed some trailing whitespace * added @namespace queries for highlights.scm * bumped parser version again * removed superfluous @type capture * removed `@type`s `has-ancestor` and removed `(_ (_ ...` structures, but added priorities * added missing @constant capture to some queries in highlights.scm * fixed priority numbers so they work when injecting nim (in markdown) * added @none captures back to injection targets * added (assembly_statement) injection query * added indent queries * removed indents.scm again * added some missing queries for dot_generic_call, concept_declaration and pragma_statement --------- Co-authored-by: Christian Clason <c.clason@uni-graz.at> Co-authored-by: ObserverOfTime <chronobserver@disroot.org>
2023-10-30 12:35:51 +01:00
},
nim_format_string = {
install_info = {
url = 'https://github.com/aMOPel/tree-sitter-nim-format-string',
files = { 'src/parser.c' },
},
maintainers = { '@aMOPel' },
tier = 3,
},
2020-07-16 12:59:35 +02:00
ninja = {
install_info = {
url = 'https://github.com/alemuller/tree-sitter-ninja',
files = { 'src/parser.c' },
},
maintainers = { '@alemuller' },
},
2020-07-28 07:39:45 -05:00
nix = {
install_info = {
url = 'https://github.com/cstrahan/tree-sitter-nix',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@leo60228' },
},
norg = {
install_info = {
url = 'https://github.com/nvim-neorg/tree-sitter-norg',
files = { 'src/parser.c', 'src/scanner.cc' },
use_makefile = true,
},
tier = 4,
maintainers = { '@JoeyGrajciar', '@vhyrro' },
2023-08-31 02:26:24 -04:00
},
nqc = {
install_info = {
url = 'https://github.com/amaanq/tree-sitter-nqc',
files = { 'src/parser.c' },
},
maintainers = { '@amaanq' },
tier = 2,
},
nu = {
install_info = {
url = 'https://github.com/nushell/tree-sitter-nu',
files = { 'src/parser.c' },
},
maintainers = { '@abhisheksingh0x558' },
tier = 3,
2023-05-18 19:37:56 -04:00
},
objc = {
install_info = {
url = 'https://github.com/amaanq/tree-sitter-objc',
files = { 'src/parser.c' },
},
maintainers = { '@amaanq' },
},
objdump = {
install_info = {
url = 'https://github.com/ColinKennedy/tree-sitter-objdump',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@ColinKennedy' },
tier = 3,
2021-03-14 22:38:54 -02:30
},
ocaml = {
install_info = {
url = 'https://github.com/tree-sitter/tree-sitter-ocaml',
files = { 'src/parser.c', 'src/scanner.c' },
location = 'grammars/ocaml',
},
maintainers = { '@undu' },
2020-11-17 17:28:53 -05:00
},
ocaml_interface = {
install_info = {
url = 'https://github.com/tree-sitter/tree-sitter-ocaml',
files = { 'src/parser.c', 'src/scanner.c' },
location = 'grammars/interface',
},
maintainers = { '@undu' },
2021-07-28 19:52:29 +02:00
},
2021-01-05 12:37:16 +01:00
ocamllex = {
install_info = {
url = 'https://github.com/atom-ocaml/tree-sitter-ocamllex',
files = { 'src/parser.c', 'src/scanner.c' },
requires_generate_from_grammar = true,
},
maintainers = { '@undu' },
2023-05-11 03:56:12 -04:00
},
odin = {
install_info = {
url = 'https://github.com/amaanq/tree-sitter-odin',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@amaanq' },
2021-02-05 13:45:26 +07:00
},
pascal = {
install_info = {
url = 'https://github.com/Isopod/tree-sitter-pascal',
files = { 'src/parser.c' },
},
maintainers = { '@Isopod' },
2023-02-27 21:18:00 -05:00
},
passwd = {
install_info = {
url = 'https://github.com/ath3/tree-sitter-passwd',
files = { 'src/parser.c' },
},
maintainers = { '@amaanq' },
2023-06-27 11:50:24 +03:00
},
pem = {
install_info = {
url = 'https://github.com/ObserverOfTime/tree-sitter-pem',
files = { 'src/parser.c' },
},
maintainers = { '@ObserverOfTime' },
tier = 2,
2021-03-09 21:06:07 +02:00
},
perl = {
install_info = {
url = 'https://github.com/tree-sitter-perl/tree-sitter-perl',
branch = 'release',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@RabbiVeesh', '@LeoNerd' },
2021-03-21 00:03:20 +01:00
},
php = {
install_info = {
url = 'https://github.com/tree-sitter/tree-sitter-php',
location = 'php',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@tk-shirasaka', '@calebdw' },
requires = { 'php_only' },
readme_note = 'PHP with embedded HTML',
},
php_only = {
install_info = {
url = 'https://github.com/tree-sitter/tree-sitter-php',
location = 'php_only',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@tk-shirasaka', '@calebdw' },
readme_note = 'PHP without embedded HTML',
2022-04-19 06:31:31 +02:00
},
phpdoc = {
install_info = {
url = 'https://github.com/claytonrcarter/tree-sitter-phpdoc',
files = { 'src/parser.c', 'src/scanner.c' },
generate_requires_npm = true,
},
maintainers = { '@mikehaertl' },
tier = 4,
2021-03-21 00:03:20 +01:00
},
pioasm = {
install_info = {
url = 'https://github.com/leo60228/tree-sitter-pioasm',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@leo60228' },
2023-02-28 00:14:08 -05:00
},
po = {
install_info = {
url = 'https://github.com/erasin/tree-sitter-po',
files = { 'src/parser.c' },
},
maintainers = { '@amaanq' },
},
pod = {
install_info = {
url = 'https://github.com/tree-sitter-perl/tree-sitter-pod',
files = { 'src/parser.c', 'src/scanner.c' },
branch = 'release',
},
maintainers = { '@RabbiVeesh', '@LeoNerd' },
tier = 3,
2021-03-21 00:03:20 +01:00
},
2021-03-21 13:26:33 -04:00
poe_filter = {
install_info = {
url = 'https://github.com/ObserverOfTime/tree-sitter-poe-filter',
files = { 'src/parser.c' },
},
maintainers = { '@ObserverOfTime' },
readme_note = 'Path of Exile item filter',
tier = 4,
2023-03-26 18:28:54 -04:00
},
pony = {
install_info = {
url = 'https://github.com/amaanq/tree-sitter-pony',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@amaanq', '@mfelsche' },
2024-07-22 23:14:45 +02:00
},
powershell = {
install_info = {
url = 'https://github.com/airbus-cert/tree-sitter-powershell',
files = { 'src/parser.c', 'src/scanner.c' },
},
filetype = 'ps1',
maintainers = { '@L2jLiga' },
tier = 3,
},
printf = {
install_info = {
url = 'https://github.com/ObserverOfTime/tree-sitter-printf',
files = { 'src/parser.c' },
},
maintainers = { '@ObserverOfTime' },
tier = 2,
},
prisma = {
install_info = {
url = 'https://github.com/victorhqc/tree-sitter-prisma',
files = { 'src/parser.c' },
},
maintainers = { '@elianiva' },
},
problog = {
install_info = {
url = 'https://github.com/foxyseta/tree-sitter-prolog',
files = { 'src/parser.c' },
location = 'grammars/problog',
},
maintainers = { '@foxyseta' },
requires = { 'prolog' },
tier = 3,
},
prolog = {
install_info = {
url = 'https://github.com/foxyseta/tree-sitter-prolog',
files = { 'src/parser.c' },
location = 'grammars/prolog',
},
maintainers = { '@foxyseta' },
tier = 3,
},
properties = {
install_info = {
url = 'https://github.com/ObserverOfTime/tree-sitter-properties',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@ObserverOfTime' },
tier = 2,
readme_note = 'Java properties files',
2023-11-21 02:19:07 +02:00
},
proto = {
install_info = {
url = 'https://github.com/treywood/tree-sitter-proto',
files = { 'src/parser.c' },
},
maintainers = { '@treywood' },
2021-03-23 06:18:43 +05:30
},
promql = {
install_info = {
url = 'https://github.com/MichaHoffmann/tree-sitter-promql',
files = { 'src/parser.c' },
},
maintainers = { '@MichaHoffmann' },
tier = 4,
},
prql = {
install_info = {
url = 'https://github.com/PRQL/tree-sitter-prql',
files = { 'src/parser.c' },
},
maintainers = { '@matthias-Q' },
2023-08-17 04:07:43 -04:00
},
psv = {
install_info = {
url = 'https://github.com/amaanq/tree-sitter-csv',
files = { 'src/parser.c' },
location = 'psv',
},
maintainers = { '@amaanq' },
tier = 2,
},
pug = {
install_info = {
url = 'https://github.com/zealot128/tree-sitter-pug',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@zealot128' },
tier = 4,
2023-04-26 07:32:41 -04:00
},
puppet = {
install_info = {
url = 'https://github.com/amaanq/tree-sitter-puppet',
files = { 'src/parser.c' },
},
maintainers = { '@amaanq' },
},
purescript = {
install_info = {
url = 'https://github.com/postsolar/tree-sitter-purescript',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@postsolar' },
tier = 3,
2023-08-10 11:35:27 +03:00
},
pymanifest = {
install_info = {
url = 'https://github.com/ObserverOfTime/tree-sitter-pymanifest',
files = { 'src/parser.c' },
},
maintainers = { '@ObserverOfTime' },
readme_name = 'PyPA manifest',
tier = 2,
2021-06-20 21:37:07 +02:00
},
python = {
install_info = {
url = 'https://github.com/tree-sitter/tree-sitter-python',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@stsewd', '@theHamsta' },
},
ql = {
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
},
qmldir = {
install_info = {
url = 'https://github.com/Decodetalkers/tree-sitter-qmldir',
files = { 'src/parser.c' },
},
maintainers = { '@amaanq' },
2021-04-18 09:57:02 +02:00
},
qmljs = {
install_info = {
url = 'https://github.com/yuja/tree-sitter-qmljs',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@Decodetalkers' },
},
query = {
install_info = {
url = 'https://github.com/nvim-treesitter/tree-sitter-query',
files = { 'src/parser.c' },
},
maintainers = { '@steelsojka' },
readme_note = 'Tree-sitter query language',
tier = 1,
2021-08-24 18:23:16 -04:00
},
r = {
install_info = {
url = 'https://github.com/r-lib/tree-sitter-r',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@ribru17' },
tier = 3,
},
racket = {
install_info = {
url = 'https://github.com/6cdh/tree-sitter-racket',
files = { 'src/parser.c', 'src/scanner.c' },
},
tier = 4,
},
ralph = {
install_info = {
url = 'https://github.com/alephium/tree-sitter-ralph',
files = { 'src/parser.c' },
},
maintainers = { '@tdroxler' },
tier = 3,
2021-09-18 21:15:37 +01:00
},
rasi = {
install_info = {
url = 'https://github.com/Fymyte/tree-sitter-rasi',
files = { 'src/parser.c' },
},
maintainers = { '@Fymyte' },
},
razor = {
install_info = {
url = 'https://github.com/tris203/tree-sitter-razor',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@tris203' },
tier = 3,
2023-12-01 01:22:29 +09:00
},
rbs = {
install_info = {
url = 'https://github.com/joker1007/tree-sitter-rbs',
files = { 'src/parser.c' },
},
maintainers = { '@joker1007' },
tier = 3,
2023-08-22 02:10:29 -04:00
},
re2c = {
install_info = {
url = 'https://github.com/amaanq/tree-sitter-re2c',
files = { 'src/parser.c' },
},
maintainers = { '@amaanq' },
tier = 2,
},
readline = {
install_info = {
url = 'https://github.com/ribru17/tree-sitter-readline',
files = { 'src/parser.c' },
},
maintainers = { '@ribru17' },
tier = 3,
2022-01-15 16:35:55 +02:00
},
regex = {
install_info = {
url = 'https://github.com/tree-sitter/tree-sitter-regex',
files = { 'src/parser.c' },
},
maintainers = { '@theHamsta' },
2021-10-02 17:09:40 -04:00
},
rego = {
install_info = {
url = 'https://github.com/FallenAngel97/tree-sitter-rego',
files = { 'src/parser.c' },
},
maintainers = { '@FallenAngel97' },
2023-07-24 13:07:35 +03:00
},
requirements = {
install_info = {
url = 'https://github.com/ObserverOfTime/tree-sitter-requirements',
files = { 'src/parser.c' },
},
maintainers = { '@ObserverOfTime' },
readme_name = 'pip requirements',
tier = 2,
},
rescript = {
install_info = {
url = 'https://github.com/rescript-lang/tree-sitter-rescript',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@ribru17' },
tier = 2,
},
2021-12-14 10:47:47 +00:00
rnoweb = {
install_info = {
url = 'https://github.com/bamonroe/tree-sitter-rnoweb',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@bamonroe' },
},
robot = {
install_info = {
url = 'https://github.com/Hubro/tree-sitter-robot',
files = { 'src/parser.c' },
},
maintainers = { '@Hubro' },
tier = 3,
2024-06-30 17:12:36 +09:00
},
robots = {
install_info = {
url = 'https://github.com/opa-oz/tree-sitter-robots-txt',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@opa-oz' },
tier = 3,
},
roc = {
install_info = {
url = 'https://github.com/faldor20/tree-sitter-roc',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@nat-418' },
tier = 3,
2023-02-04 15:42:12 -05:00
},
ron = {
install_info = {
url = 'https://github.com/amaanq/tree-sitter-ron',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@amaanq' },
2021-11-01 06:20:58 +07:00
},
rst = {
install_info = {
url = 'https://github.com/stsewd/tree-sitter-rst',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@stsewd' },
2021-12-14 10:47:47 +00:00
},
ruby = {
install_info = {
url = 'https://github.com/tree-sitter/tree-sitter-ruby',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@TravonteD' },
},
runescript = {
install_info = {
url = 'https://github.com/2004Scape/tree-sitter-runescript',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@2004Scape' },
tier = 3,
},
rust = {
install_info = {
url = 'https://github.com/tree-sitter/tree-sitter-rust',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@amaanq' },
2021-12-14 13:45:56 +01:00
},
scala = {
install_info = {
url = 'https://github.com/tree-sitter/tree-sitter-scala',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@stevanmilic' },
2023-07-25 22:49:09 +02:00
},
scfg = {
install_info = {
url = 'https://github.com/rockorager/tree-sitter-scfg',
files = { 'src/parser.c' },
requires_generate_from_grammar = true,
},
maintainers = { '@WhyNotHugo' },
tier = 3,
2021-11-23 01:06:51 +01:00
},
scheme = {
install_info = {
url = 'https://github.com/6cdh/tree-sitter-scheme',
files = { 'src/parser.c' },
},
tier = 4,
},
scss = {
install_info = {
url = 'https://github.com/serenadeai/tree-sitter-scss',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@elianiva' },
},
sflog = {
install_info = {
url = 'https://github.com/aheber/tree-sitter-sfapex',
files = { 'src/parser.c' },
location = 'sflog',
},
maintainers = { '@aheber', '@xixiaofinland' },
readme_note = 'Salesforce debug log',
tier = 3,
},
slang = {
install_info = {
url = 'https://github.com/theHamsta/tree-sitter-slang',
files = { 'src/parser.c', 'src/scanner.c' },
generate_requires_npm = true,
},
readme_note = 'Shader Slang',
maintainers = { '@theHamsta' },
tier = 4,
2023-11-18 20:52:31 +01:00
},
slim = {
install_info = {
url = 'https://github.com/theoo/tree-sitter-slim',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@theoo' },
tier = 3,
},
slint = {
install_info = {
url = 'https://github.com/slint-ui/tree-sitter-slint',
files = { 'src/parser.c' },
},
maintainers = { '@hunger' },
tier = 3,
2021-08-29 19:31:37 +02:00
},
smali = {
install_info = {
url = 'https://github.com/tree-sitter-grammars/tree-sitter-smali',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@amaanq' },
tier = 3,
2022-01-28 19:13:39 -03:00
},
snakemake = {
install_info = {
url = 'https://github.com/osthomas/tree-sitter-snakemake',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainer = { '@osthomas' },
tier = 4,
2023-09-13 03:29:22 +02:00
},
smithy = {
install_info = {
url = 'https://github.com/indoorvivants/tree-sitter-smithy',
files = { 'src/parser.c' },
},
maintainers = { '@amaanq', '@keynmol' },
},
solidity = {
install_info = {
url = 'https://github.com/JoranHonig/tree-sitter-solidity',
files = { 'src/parser.c' },
},
maintainers = { '@amaanq' },
2022-03-10 19:14:49 +08:00
},
soql = {
install_info = {
url = 'https://github.com/aheber/tree-sitter-sfapex',
files = { 'src/parser.c' },
location = 'soql',
},
maintainers = { '@aheber', '@xixiafinland' },
tier = 3,
},
sosl = {
install_info = {
url = 'https://github.com/aheber/tree-sitter-sfapex',
files = { 'src/parser.c' },
location = 'sosl',
},
maintainers = { '@aheber', '@xixiafinland' },
},
sourcepawn = {
install_info = {
url = 'https://github.com/nilshelmig/tree-sitter-sourcepawn',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@Sarrus1' },
tier = 3,
},
sparql = {
install_info = {
url = 'https://github.com/GordianDziwis/tree-sitter-sparql',
files = { 'src/parser.c' },
},
maintainers = { '@GordianDziwis' },
2022-03-14 10:01:14 -07:00
},
sql = {
install_info = {
url = 'https://github.com/derekstride/tree-sitter-sql',
files = { 'src/parser.c', 'src/scanner.c' },
branch = 'gh-pages',
},
maintainers = { '@derekstride' },
2022-03-26 18:27:11 +01:00
},
squirrel = {
install_info = {
url = 'https://github.com/amaanq/tree-sitter-squirrel',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@amaanq' },
2023-03-06 04:46:43 -05:00
},
ssh_config = {
install_info = {
url = 'https://github.com/ObserverOfTime/tree-sitter-ssh-config',
files = { 'src/parser.c' },
},
maintainers = { '@ObserverOfTime' },
tier = 2,
2023-09-17 12:41:06 +03:00
},
starlark = {
install_info = {
url = 'https://github.com/amaanq/tree-sitter-starlark',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@amaanq' },
2023-02-18 15:00:37 -05:00
},
strace = {
install_info = {
url = 'https://github.com/sigmaSd/tree-sitter-strace',
files = { 'src/parser.c' },
},
maintainers = { '@amaanq' },
tier = 2,
2023-08-20 04:33:33 -04:00
},
styled = {
install_info = {
url = 'https://github.com/mskelton/tree-sitter-styled',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@mskelton' },
tier = 3,
},
supercollider = {
install_info = {
url = 'https://github.com/madskjeldgaard/tree-sitter-supercollider',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@madskjeldgaard' },
2022-04-07 20:34:19 +08:00
},
superhtml = {
install_info = {
url = 'https://github.com/kristoff-it/superhtml',
files = { 'src/parser.c', 'src/scanner.c' },
location = 'tree-sitter-superhtml',
},
maintainers = { '@rockorager' },
tier = 3,
},
surface = {
install_info = {
url = 'https://github.com/connorlay/tree-sitter-surface',
files = { 'src/parser.c' },
},
maintainers = { '@connorlay' },
2023-01-23 03:00:32 -05:00
},
svelte = {
install_info = {
url = 'https://github.com/tree-sitter-grammars/tree-sitter-svelte',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@amaanq' },
tier = 2,
2022-04-11 18:14:04 +02:00
},
sway = {
install_info = {
url = 'https://github.com/FuelLabs/tree-sitter-sway.git',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@ribru17' },
tier = 2,
2024-11-01 13:34:02 -07:00
},
swift = {
install_info = {
url = 'https://github.com/alex-pinkus/tree-sitter-swift',
files = { 'src/parser.c', 'src/scanner.c' },
requires_generate_from_grammar = true,
},
maintainers = { '@alex-pinkus' },
},
sxhkdrc = {
install_info = {
url = 'https://github.com/RaafatTurki/tree-sitter-sxhkdrc',
files = { 'src/parser.c' },
},
maintainers = { '@RaafatTurki' },
2022-04-26 17:53:51 +01:00
},
systemtap = {
install_info = {
url = 'https://github.com/ok-ryoko/tree-sitter-systemtap',
files = { 'src/parser.c' },
},
maintainers = { '@ok-ryoko' },
tier = 3,
2023-07-18 19:55:06 +00:00
},
t32 = {
install_info = {
url = 'https://gitlab.com/xasc/tree-sitter-t32.git',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@xasc' },
tier = 3,
},
tablegen = {
install_info = {
url = 'https://github.com/amaanq/tree-sitter-tablegen',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@amaanq' },
2023-03-16 07:00:30 -04:00
},
tact = {
install_info = {
url = 'https://github.com/tact-lang/tree-sitter-tact',
files = { 'src/parser.c' },
},
maintainers = { '@novusnota' },
tier = 3,
2024-05-03 18:42:51 +02:00
},
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' },
},
templ = {
install_info = {
url = 'https://github.com/vrischmann/tree-sitter-templ',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@vrischmann' },
tier = 3,
2024-02-09 16:51:43 +01:00
},
tcl = {
install_info = {
url = 'https://github.com/tree-sitter-grammars/tree-sitter-tcl',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@lewis6991' },
tier = 2,
},
terraform = {
install_info = {
url = 'https://github.com/MichaHoffmann/tree-sitter-hcl',
files = { 'src/parser.c', 'src/scanner.c' },
location = 'dialects/terraform',
},
maintainers = { '@MichaHoffmann' },
},
textproto = {
install_info = {
url = 'https://github.com/PorterAtGoogle/tree-sitter-textproto',
files = { 'src/parser.c' },
},
maintainers = { '@Porter' },
tier = 3,
2023-01-21 07:39:15 -05:00
},
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
},
tiger = {
install_info = {
url = 'https://github.com/ambroisie/tree-sitter-tiger',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@ambroisie' },
2022-11-06 17:44:50 +01:00
},
tlaplus = {
install_info = {
url = 'https://github.com/tlaplus-community/tree-sitter-tlaplus',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@ahelwer', '@susliko' },
2024-02-20 03:26:32 +08:00
},
tmux = {
install_info = {
url = 'https://github.com/Freed-Wu/tree-sitter-tmux',
files = { 'src/parser.c' },
},
maintainers = { '@Freed-Wu' },
tier = 3,
2022-09-01 00:13:19 +03:00
},
2022-08-31 03:44:53 +03:00
todotxt = {
install_info = {
url = 'https://github.com/arnarg/tree-sitter-todotxt',
files = { 'src/parser.c' },
},
maintainers = { '@arnarg' },
tier = 4,
2022-08-15 23:36:56 +02:00
},
toml = {
install_info = {
url = 'https://github.com/tree-sitter-grammars/tree-sitter-toml',
files = { 'src/parser.c', 'src/scanner.c' },
generate_requires_npm = true,
},
maintainers = { '@tk-shirasaka' },
2023-08-17 04:07:43 -04:00
},
tsv = {
install_info = {
url = 'https://github.com/amaanq/tree-sitter-csv',
files = { 'src/parser.c' },
location = 'tsv',
},
maintainers = { '@amaanq' },
tier = 2,
},
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,
},
maintainers = { '@steelsojka' },
2022-09-08 14:48:02 +03:00
},
turtle = {
install_info = {
url = 'https://github.com/GordianDziwis/tree-sitter-turtle',
files = { 'src/parser.c' },
},
maintainers = { '@GordianDziwis' },
},
twig = {
install_info = {
url = 'https://github.com/gbprod/tree-sitter-twig',
files = { 'src/parser.c' },
},
maintainers = { '@gbprod' },
2022-11-24 08:54:54 +01:00
},
typescript = {
install_info = {
url = 'https://github.com/tree-sitter/tree-sitter-typescript',
files = { 'src/parser.c', 'src/scanner.c' },
location = 'typescript',
generate_requires_npm = true,
},
maintainers = { '@steelsojka' },
},
typespec = {
install_info = {
url = 'https://github.com/happenslol/tree-sitter-typespec',
files = { 'src/parser.c' },
},
maintainers = { '@happenslol' },
tier = 3,
},
typoscript = {
install_info = {
url = 'https://github.com/Teddytrombone/tree-sitter-typoscript',
files = { 'src/parser.c' },
},
maintainers = { '@Teddytrombone' },
tier = 3,
2024-02-16 20:54:08 +03:00
},
typst = {
install_info = {
url = 'https://github.com/uben0/tree-sitter-typst',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@uben0', '@RaafatTurki' },
tier = 3,
2023-11-03 14:20:46 +02:00
},
udev = {
install_info = {
url = 'https://github.com/ObserverOfTime/tree-sitter-udev',
files = { 'src/parser.c' },
},
maintainers = { '@ObserverOfTime' },
tier = 2,
2023-02-20 18:05:10 +01:00
},
ungrammar = {
install_info = {
url = 'https://github.com/Philipp-M/tree-sitter-ungrammar',
files = { 'src/parser.c' },
},
maintainers = { '@Philipp-M', '@amaanq' },
},
unison = {
install_info = {
url = 'https://github.com/kylegoetz/tree-sitter-unison',
files = { 'src/parser.c', 'src/scanner.c' },
requires_generate_from_grammar = true,
},
maintainers = { '@tapegram' },
tier = 4,
},
usd = {
install_info = {
url = 'https://github.com/ColinKennedy/tree-sitter-usd',
files = { 'src/parser.c' },
},
maintainers = { '@ColinKennedy' },
2023-03-07 04:32:20 -05:00
},
uxntal = {
install_info = {
url = 'https://github.com/amaanq/tree-sitter-uxntal',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@amaanq' },
2022-09-11 09:48:25 +02:00
},
v = {
install_info = {
url = 'https://github.com/vlang/v-analyzer',
files = { 'src/parser.c' },
location = 'tree_sitter_v',
},
maintainers = { '@kkharji', '@amaanq' },
},
vala = {
install_info = {
url = 'https://github.com/vala-lang/tree-sitter-vala',
files = { 'src/parser.c' },
},
maintainers = { '@Prince781' },
2024-03-18 05:00:22 -04:00
},
vento = {
install_info = {
url = 'https://github.com/ventojs/tree-sitter-vento',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@wrapperup', '@oscarotero' },
tier = 3,
},
verilog = {
install_info = {
url = 'https://github.com/gmlarumbe/tree-sitter-systemverilog',
files = { 'src/parser.c' },
},
maintainers = { '@zhangwwpeng' },
2024-07-18 08:46:12 +02:00
},
vhdl = {
install_info = {
url = 'https://github.com/jpt13653903/tree-sitter-vhdl',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@jpt13653903' },
tier = 3,
2022-11-13 08:33:54 -03:00
},
vhs = {
install_info = {
url = 'https://github.com/charmbracelet/tree-sitter-vhs',
files = { 'src/parser.c' },
},
maintainers = { '@caarlos0' },
2022-09-26 19:25:26 +03:00
},
vim = {
install_info = {
url = 'https://github.com/neovim/tree-sitter-vim',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@clason' },
tier = 1,
2023-04-01 15:58:48 +02:00
},
vimdoc = {
install_info = {
url = 'https://github.com/neovim/tree-sitter-vimdoc',
files = { 'src/parser.c' },
},
maintainers = { '@clason' },
tier = 1,
2024-07-28 13:15:43 +08:00
},
vrl = {
install_info = {
url = 'https://github.com/belltoy/tree-sitter-vrl',
files = { 'src/parser.c' },
},
maintainers = { '@belltoy' },
tier = 3,
2022-10-26 12:58:34 +03:00
},
2022-09-20 02:03:08 +03:00
vue = {
install_info = {
url = 'https://github.com/tree-sitter-grammars/tree-sitter-vue',
files = { 'src/parser.c', 'src/scanner.c' },
branch = 'main',
},
maintainers = { '@WhyNotHugo', '@lucario387' },
tier = 2,
2022-10-21 19:48:15 +03:00
},
wing = {
install_info = {
url = 'https://github.com/winglang/tree-sitter-wing',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@gshpychka', '@MarkMcCulloh' },
tier = 3,
2022-10-02 18:12:30 +02:00
},
wgsl = {
install_info = {
url = 'https://github.com/szebniok/tree-sitter-wgsl',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@szebniok' },
},
wgsl_bevy = {
install_info = {
url = 'https://github.com/theHamsta/tree-sitter-wgsl-bevy',
files = { 'src/parser.c', 'src/scanner.c' },
generate_requires_npm = true,
},
maintainers = { '@theHamsta' },
},
wit = {
install_info = {
url = 'https://github.com/liamwh/tree-sitter-wit',
files = { 'src/parser.c' },
},
maintainers = { '@liamwh' },
tier = 3,
2023-11-10 00:23:42 +02:00
},
xcompose = {
install_info = {
url = 'https://github.com/ObserverOfTime/tree-sitter-xcompose',
files = { 'src/parser.c' },
},
maintainers = { '@ObserverOfTime' },
tier = 2,
2023-08-04 14:50:28 +03:00
},
xml = {
install_info = {
url = 'https://github.com/tree-sitter-grammars/tree-sitter-xml',
files = { 'src/parser.c', 'src/scanner.c' },
location = 'xml',
},
maintainers = { '@ObserverOfTime' },
tier = 2,
},
xresources = {
install_info = {
url = 'https://github.com/ValdezFOmar/tree-sitter-xresources',
files = { 'src/parser.c' },
},
filetype = 'xdefaults',
maintainers = { '@ValdezFOmar' },
tier = 3,
2022-10-03 19:41:45 +03:00
},
yaml = {
install_info = {
url = 'https://github.com/tree-sitter-grammars/tree-sitter-yaml',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@amaanq' },
tier = 2,
},
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
},
yuck = {
install_info = {
url = 'https://github.com/Philipp-M/tree-sitter-yuck',
files = { 'src/parser.c', 'src/scanner.c' },
},
maintainers = { '@Philipp-M', '@amaanq' },
2024-01-22 01:42:30 +08:00
},
zathurarc = {
install_info = {
url = 'https://github.com/Freed-Wu/tree-sitter-zathurarc',
files = { 'src/parser.c' },
},
maintainers = { '@Freed-Wu' },
tier = 3,
2022-10-08 21:25:05 +03:00
},
zig = {
install_info = {
url = 'https://github.com/tree-sitter-grammars/tree-sitter-zig',
files = { 'src/parser.c' },
},
maintainers = { '@amaanq' },
tier = 1,
},
ziggy = {
install_info = {
url = 'https://github.com/kristoff-it/ziggy',
files = { 'src/parser.c' },
location = 'tree-sitter-ziggy',
},
maintainers = { '@rockorager' },
tier = 3,
},
ziggy_schema = {
install_info = {
url = 'https://github.com/kristoff-it/ziggy',
files = { 'src/parser.c' },
location = 'tree-sitter-ziggy-schema',
},
maintainers = { '@rockorager' },
tier = 3,
},
}
-- Get a list of all available parsers
---@param tier integer? only get parsers of specified tier
---@return string[]
function M.get_available(tier)
local parsers = vim.tbl_keys(M.configs)
table.sort(parsers)
if tier then
parsers = vim.iter.filter(function(p)
return M.configs[p].tier == tier
end, parsers)
end
if vim.fn.executable('tree-sitter') == 0 or vim.fn.executable('node') == 0 then
parsers = vim.iter.filter(function(p)
return not M.configs[p].install_info.requires_generate_from_grammar
end, parsers)
end
return parsers
2020-07-10 21:47:50 +02:00
end
return M