feat: vhs (.tape) support (#3726)

This commit is contained in:
Carlos Alexandro Becker 2022-11-13 08:33:54 -03:00 committed by GitHub
parent 313daf25e8
commit eff0d43b49
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 53 additions and 0 deletions

View file

@ -18,6 +18,7 @@ local filetype_to_parsername = {
pandoc = "markdown",
rmd = "markdown",
cs = "c_sharp",
tape = "vhs",
}
---@class InstallInfo
@ -1282,6 +1283,16 @@ list.diff = {
filetype = "gitdiff",
}
list.vhs = {
install_info = {
url = "https://github.com/charmbracelet/tree-sitter-vhs",
branch = "main",
files = { "src/parser.c" },
},
maintainers = { "@caarlos0", "@maaslalani" },
filetype = "tape",
}
local M = {
list = list,
filetype_to_parsername = filetype_to_parsername,