diff options
| author | Andrey Chalkin <L2jLiga@gmail.com> | 2024-07-22 23:14:45 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-22 23:14:45 +0200 |
| commit | c5b3560306c93498cd745f597880d4afe95ec5c8 (patch) | |
| tree | 881542851e021eeba4ce9eb551fc96a492c133b7 /lua | |
| parent | refactor(latex): deduplicate captures, reorder (diff) | |
| download | nvim-treesitter-c5b3560306c93498cd745f597880d4afe95ec5c8.tar nvim-treesitter-c5b3560306c93498cd745f597880d4afe95ec5c8.tar.gz nvim-treesitter-c5b3560306c93498cd745f597880d4afe95ec5c8.tar.bz2 nvim-treesitter-c5b3560306c93498cd745f597880d4afe95ec5c8.tar.lz nvim-treesitter-c5b3560306c93498cd745f597880d4afe95ec5c8.tar.xz nvim-treesitter-c5b3560306c93498cd745f597880d4afe95ec5c8.tar.zst nvim-treesitter-c5b3560306c93498cd745f597880d4afe95ec5c8.zip | |
feat: add powershell language
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 906160ed7..1cdb1b186 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -1562,6 +1562,15 @@ list.pony = { maintainers = { "@amaanq", "@mfelsche" }, } +list.powershell = { + install_info = { + url = "https://github.com/airbus-cert/tree-sitter-powershell", + files = { "src/parser.c", "src/scanner.c" }, + }, + filetype = "ps1", + maintainers = { "L2jLiga" }, +} + list.printf = { install_info = { url = "https://github.com/ObserverOfTime/tree-sitter-printf", |
