diff options
| author | zhaown <51357674+chaozwn@users.noreply.github.com> | 2024-07-07 23:27:21 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-07 17:27:21 +0200 |
| commit | f9aa4f060ef73b487932696a84ed48b67eb1373e (patch) | |
| tree | 1fd4107e229454c33eb0414a19ca05f380d34d76 /lua | |
| parent | feat(ruby): highlights for special methods (#6735) (diff) | |
| download | nvim-treesitter-f9aa4f060ef73b487932696a84ed48b67eb1373e.tar nvim-treesitter-f9aa4f060ef73b487932696a84ed48b67eb1373e.tar.gz nvim-treesitter-f9aa4f060ef73b487932696a84ed48b67eb1373e.tar.bz2 nvim-treesitter-f9aa4f060ef73b487932696a84ed48b67eb1373e.tar.lz nvim-treesitter-f9aa4f060ef73b487932696a84ed48b67eb1373e.tar.xz nvim-treesitter-f9aa4f060ef73b487932696a84ed48b67eb1373e.tar.zst nvim-treesitter-f9aa4f060ef73b487932696a84ed48b67eb1373e.zip | |
feat: add goctl parser and queries
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/nvim-treesitter/parsers.lua | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index 14555c57a..65d9313ae 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -757,6 +757,14 @@ list.go = { maintainers = { "@theHamsta", "@WinWisely268" }, } +list.goctl = { + install_info = { + url = "https://github.com/chaozwn/tree-sitter-goctl.git", + files = { "src/parser.c" }, + }, + maintainers = { "@chaozwn" }, +} + list.godot_resource = { install_info = { url = "https://github.com/PrestonKnopp/tree-sitter-godot-resource", |
