From 1ceaceb9dea9b0bac2162345ee11e47a44e07a70 Mon Sep 17 00:00:00 2001 From: ObserverOfTime Date: Sat, 4 Mar 2023 20:25:03 +0200 Subject: [PATCH] docs: fix readme names --- README.md | 6 +++--- lua/nvim-treesitter/parsers.lua | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index e6d00fbb9..6371f7c10 100644 --- a/README.md +++ b/README.md @@ -261,11 +261,11 @@ We are looking for maintainers to add more parsers and to write query files for - [x] [ledger](https://github.com/cbarrete/tree-sitter-ledger) (maintained by @cbarrete) - [x] [llvm](https://github.com/benwilliamgraham/tree-sitter-llvm) (maintained by @benwilliamgraham) - [x] [lua](https://github.com/MunifTanjim/tree-sitter-lua) (maintained by @muniftanjim) -- [x] [luap](https://github.com/amaanq/tree-sitter-luap) (maintained by @amaanq) +- [x] [lua patterns](https://github.com/amaanq/tree-sitter-luap) (maintained by @amaanq) - [x] [m68k](https://github.com/grahambates/tree-sitter-m68k) (maintained by @grahambates) - [x] [make](https://github.com/alemuller/tree-sitter-make) (maintained by @lewis6991) -- [x] [markdown](https://github.com/MDeiml/tree-sitter-markdown) (experimental, maintained by @MDeiml) -- [x] [markdown_inline](https://github.com/MDeiml/tree-sitter-markdown) (experimental, maintained by @MDeiml) +- [x] [markdown (basic highlighting)](https://github.com/MDeiml/tree-sitter-markdown) (experimental, maintained by @MDeiml) +- [x] [markdown_inline (needed for full highlighting)](https://github.com/MDeiml/tree-sitter-markdown) (experimental, maintained by @MDeiml) - [x] [matlab](https://github.com/mstanciu552/tree-sitter-matlab) (maintained by @amaanq) - [x] [menhir](https://github.com/Kerl13/tree-sitter-menhir) (maintained by @Kerl13) - [ ] [mermaid](https://github.com/monaqa/tree-sitter-mermaid) (experimental) diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index 4c873df81..1185d02d3 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -859,9 +859,9 @@ list.luap = { install_info = { url = "https://github.com/amaanq/tree-sitter-luap", files = { "src/parser.c" }, - readme_name = "lua patterns", }, maintainers = { "@amaanq" }, + readme_name = "lua patterns", } list.m68k = { @@ -888,9 +888,9 @@ list.markdown = { location = "tree-sitter-markdown", files = { "src/parser.c", "src/scanner.c" }, branch = "split_parser", - readme_name = "markdown (basic highlighting)", }, maintainers = { "@MDeiml" }, + readme_name = "markdown (basic highlighting)", experimental = true, } @@ -900,9 +900,9 @@ list.markdown_inline = { location = "tree-sitter-markdown-inline", files = { "src/parser.c", "src/scanner.c" }, branch = "split_parser", - readme_name = "markdown_inline (needs to be installed for full markdown highlighting)", }, maintainers = { "@MDeiml" }, + readme_name = "markdown_inline (needed for full highlighting)", experimental = true, }