diff options
| author | Teddytrombone <github@tmk-stgeorgen.at> | 2023-10-24 09:48:33 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-10-24 07:48:33 +0000 |
| commit | 16af5ef490ff37407cc4241d7b8b8798d5b3a726 (patch) | |
| tree | 76a164dc751f46e5f5cb38a724ce55957b5786e2 /lua | |
| parent | Update parsers: liquidsoap, wing (#5568) (diff) | |
| download | nvim-treesitter-16af5ef490ff37407cc4241d7b8b8798d5b3a726.tar nvim-treesitter-16af5ef490ff37407cc4241d7b8b8798d5b3a726.tar.gz nvim-treesitter-16af5ef490ff37407cc4241d7b8b8798d5b3a726.tar.bz2 nvim-treesitter-16af5ef490ff37407cc4241d7b8b8798d5b3a726.tar.lz nvim-treesitter-16af5ef490ff37407cc4241d7b8b8798d5b3a726.tar.xz nvim-treesitter-16af5ef490ff37407cc4241d7b8b8798d5b3a726.tar.zst nvim-treesitter-16af5ef490ff37407cc4241d7b8b8798d5b3a726.zip | |
feat(typoscript) Added parser and queries for TypoScript (#5564)
* Added configuration for TypoScript
* Removed duplicated code; Applied folding suggestion
* Applied suggestions
* Update queries/typoscript/highlights.scm
Co-authored-by: ObserverOfTime <chronobserver@disroot.org>
---------
Co-authored-by: ObserverOfTime <chronobserver@disroot.org>
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 3e4e39006..c9ba50b37 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -1874,6 +1874,14 @@ list.typescript = { maintainers = { "@steelsojka" }, } +list.typoscript = { + install_info = { + url = "https://github.com/Teddytrombone/tree-sitter-typoscript", + files = { "src/parser.c" }, + }, + maintainers = { "@Teddytrombone" }, +} + list.ungrammar = { install_info = { url = "https://github.com/Philipp-M/tree-sitter-ungrammar", |
