diff options
| author | David Lysenko <InfiniteRain@users.noreply.github.com> | 2024-11-06 18:09:38 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-06 17:09:38 +0000 |
| commit | 7c5a4632c4cfcb513e9ff20815a7781c464fb9d0 (patch) | |
| tree | a5042110ea470a07129e3d5f4ce815a937b6e354 /lua | |
| parent | bot(lockfile): update gitattributes, nix, nu, printf, properties, tcl (diff) | |
| download | nvim-treesitter-7c5a4632c4cfcb513e9ff20815a7781c464fb9d0.tar nvim-treesitter-7c5a4632c4cfcb513e9ff20815a7781c464fb9d0.tar.gz nvim-treesitter-7c5a4632c4cfcb513e9ff20815a7781c464fb9d0.tar.bz2 nvim-treesitter-7c5a4632c4cfcb513e9ff20815a7781c464fb9d0.tar.lz nvim-treesitter-7c5a4632c4cfcb513e9ff20815a7781c464fb9d0.tar.xz nvim-treesitter-7c5a4632c4cfcb513e9ff20815a7781c464fb9d0.tar.zst nvim-treesitter-7c5a4632c4cfcb513e9ff20815a7781c464fb9d0.zip | |
feat(runescript): add parser and queries (#7305)
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/nvim-treesitter/parsers.lua | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index a0ed0b427..871cd4458 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -21,6 +21,7 @@ for ft, lang in pairs { mysql = "sql", sbt = "scala", neomuttrc = "muttrc", + clientscript = "runescript", --- short-hand list from https://github.com/helix-editor/helix/blob/master/languages.toml rs = "rust", ex = "elixir", @@ -1948,6 +1949,14 @@ list.ruby = { maintainers = { "@TravonteD" }, } +list.runescript = { + install_info = { + url = "https://github.com/2004Scape/tree-sitter-runescript", + files = { "src/parser.c", "src/scanner.c" }, + }, + maintainers = { "@2004Scape" }, +} + list.rust = { install_info = { url = "https://github.com/tree-sitter/tree-sitter-rust", |
