aboutsummaryrefslogtreecommitdiffstats
path: root/lua
diff options
context:
space:
mode:
authorAJ Delcimmuto <ajdelco22@gmail.com>2025-04-13 15:20:09 -0500
committerGitHub <noreply@github.com>2025-04-13 13:20:09 -0700
commit7bbed4b548d9a81c14351bda93d16336edefd067 (patch)
tree8ba09b181ccc8675af19678954142633b50af0b9 /lua
parentMore bash injection support for Taskfile (#7805) (diff)
downloadnvim-treesitter-7bbed4b548d9a81c14351bda93d16336edefd067.tar
nvim-treesitter-7bbed4b548d9a81c14351bda93d16336edefd067.tar.gz
nvim-treesitter-7bbed4b548d9a81c14351bda93d16336edefd067.tar.bz2
nvim-treesitter-7bbed4b548d9a81c14351bda93d16336edefd067.tar.lz
nvim-treesitter-7bbed4b548d9a81c14351bda93d16336edefd067.tar.xz
nvim-treesitter-7bbed4b548d9a81c14351bda93d16336edefd067.tar.zst
nvim-treesitter-7bbed4b548d9a81c14351bda93d16336edefd067.zip
feat(brightscript): brightscript parser and queries (#7780)
Diffstat (limited to 'lua')
-rw-r--r--lua/nvim-treesitter/parsers.lua8
1 files changed, 8 insertions, 0 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua
index edbc003d5..31b691209 100644
--- a/lua/nvim-treesitter/parsers.lua
+++ b/lua/nvim-treesitter/parsers.lua
@@ -216,6 +216,14 @@ list.bp = {
maintainers = { "@ambroisie" },
}
+list.brightscript = {
+ install_info = {
+ url = "https://github.com/ajdelcimmuto/tree-sitter-brightscript",
+ files = { "src/parser.c" },
+ },
+ maintainers = { "@ajdelcimmuto" },
+}
+
list.c = {
install_info = {
url = "https://github.com/tree-sitter/tree-sitter-c",