mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-03 03:56:52 -04:00
feat: vhs (.tape) support (#3726)
This commit is contained in:
parent
313daf25e8
commit
eff0d43b49
4 changed files with 53 additions and 0 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue