diff options
| author | Jared Moulton <jaredmoulton3@gmail.com> | 2022-03-07 16:10:31 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-07 23:10:31 +0000 |
| commit | cc4f373bb4a2a1057479e1d08d46d740717b32a3 (patch) | |
| tree | 8d16082a30a758b34c71d62c47adaa81f4e1f888 /lua | |
| parent | Update lockfile.json (diff) | |
| download | nvim-treesitter-cc4f373bb4a2a1057479e1d08d46d740717b32a3.tar nvim-treesitter-cc4f373bb4a2a1057479e1d08d46d740717b32a3.tar.gz nvim-treesitter-cc4f373bb4a2a1057479e1d08d46d740717b32a3.tar.bz2 nvim-treesitter-cc4f373bb4a2a1057479e1d08d46d740717b32a3.tar.lz nvim-treesitter-cc4f373bb4a2a1057479e1d08d46d740717b32a3.tar.xz nvim-treesitter-cc4f373bb4a2a1057479e1d08d46d740717b32a3.tar.zst nvim-treesitter-cc4f373bb4a2a1057479e1d08d46d740717b32a3.zip | |
Add slint parser configuration and queries (#2598)
* Add slint parser
* Mark slint as experimental
* Remove filetype and add slint to the lockfile
* Update queries
* Update varibable.builtin's and repeats
* Update slint true false
* Change export back to keyword
* Change export back to include :)
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/nvim-treesitter/parsers.lua | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index 3c8cc8daf..0cd7cab9f 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -461,6 +461,16 @@ list.supercollider = { filetype = "supercollider", } +list.slint = { + install_info = { + url = "https://github.com/jrmoulton/tree-sitter-slint", + files = { "src/parser.c" }, + branch = "main", + }, + maintainers = { "@jrmoulton" }, + experimental = true, +} + list.haskell = { install_info = { url = "https://github.com/tree-sitter/tree-sitter-haskell", |
