diff options
| author | Emmanuel Bustos Torres <ema2159@gmail.com> | 2023-07-17 10:21:10 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-07-17 10:21:10 +0200 |
| commit | dd6964575e6ced69d582b7b9ffa46c240744c56f (patch) | |
| tree | cce0577a0f4fbe079f2de19f5cad968528b250b5 /lua | |
| parent | Update parsers: arduino, c, elixir, ocaml, ocaml_interface, wing (diff) | |
| download | nvim-treesitter-dd6964575e6ced69d582b7b9ffa46c240744c56f.tar nvim-treesitter-dd6964575e6ced69d582b7b9ffa46c240744c56f.tar.gz nvim-treesitter-dd6964575e6ced69d582b7b9ffa46c240744c56f.tar.bz2 nvim-treesitter-dd6964575e6ced69d582b7b9ffa46c240744c56f.tar.lz nvim-treesitter-dd6964575e6ced69d582b7b9ffa46c240744c56f.tar.xz nvim-treesitter-dd6964575e6ced69d582b7b9ffa46c240744c56f.tar.zst nvim-treesitter-dd6964575e6ced69d582b7b9ffa46c240744c56f.zip | |
feat: add Robot Framework parser and highlights
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 a9e2f48c8..0819686a1 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -1309,6 +1309,15 @@ list.rnoweb = { maintainers = { "@bamonroe" }, } +list.robot = { + install_info = { + url = "https://github.com/Hubro/tree-sitter-robot", + files = { "src/parser.c" }, + }, + maintainers = { "@ema2159" }, + experimental = true, +} + list.ron = { install_info = { url = "https://github.com/amaanq/tree-sitter-ron", |
