aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2024-03-17 06:06:30 +0000
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2024-03-17 06:06:30 +0000
commit61bf7c920b4caeb7f042134a687aeffc2ea47a34 (patch)
treefd399c466dfa452910e843b6e6b6cd12316d8e2c
parentfeat: add mesonlsp (#3076) (diff)
downloadnvim-lspconfig-61bf7c920b4caeb7f042134a687aeffc2ea47a34.tar
nvim-lspconfig-61bf7c920b4caeb7f042134a687aeffc2ea47a34.tar.gz
nvim-lspconfig-61bf7c920b4caeb7f042134a687aeffc2ea47a34.tar.bz2
nvim-lspconfig-61bf7c920b4caeb7f042134a687aeffc2ea47a34.tar.lz
nvim-lspconfig-61bf7c920b4caeb7f042134a687aeffc2ea47a34.tar.xz
nvim-lspconfig-61bf7c920b4caeb7f042134a687aeffc2ea47a34.tar.zst
nvim-lspconfig-61bf7c920b4caeb7f042134a687aeffc2ea47a34.zip
docs: update server_configurations.md
skip-checks: true
-rw-r--r--doc/server_configurations.md30
-rw-r--r--doc/server_configurations.txt30
2 files changed, 60 insertions, 0 deletions
diff --git a/doc/server_configurations.md b/doc/server_configurations.md
index ea5ba926..3fba374f 100644
--- a/doc/server_configurations.md
+++ b/doc/server_configurations.md
@@ -144,6 +144,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running
- [marksman](#marksman)
- [matlab_ls](#matlab_ls)
- [mdx_analyzer](#mdx_analyzer)
+- [mesonlsp](#mesonlsp)
- [metals](#metals)
- [millet](#millet)
- [mint](#mint)
@@ -6534,6 +6535,35 @@ require'lspconfig'.mdx_analyzer.setup{}
```
+## mesonlsp
+
+https://github.com/JCWasmx86/mesonlsp
+
+An unofficial, unendorsed language server for meson written in C++
+
+
+
+**Snippet to enable the language server:**
+```lua
+require'lspconfig'.mesonlsp.setup{}
+```
+
+
+**Default values:**
+ - `cmd` :
+ ```lua
+ { "mesonlsp", "--lsp" }
+ ```
+ - `filetypes` :
+ ```lua
+ { "meson" }
+ ```
+ - `root_dir` :
+ ```lua
+ util.root_pattern("meson_options.txt", "meson.options", ".git")
+ ```
+
+
## metals
https://scalameta.org/metals/
diff --git a/doc/server_configurations.txt b/doc/server_configurations.txt
index ea5ba926..3fba374f 100644
--- a/doc/server_configurations.txt
+++ b/doc/server_configurations.txt
@@ -144,6 +144,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running
- [marksman](#marksman)
- [matlab_ls](#matlab_ls)
- [mdx_analyzer](#mdx_analyzer)
+- [mesonlsp](#mesonlsp)
- [metals](#metals)
- [millet](#millet)
- [mint](#mint)
@@ -6534,6 +6535,35 @@ require'lspconfig'.mdx_analyzer.setup{}
```
+## mesonlsp
+
+https://github.com/JCWasmx86/mesonlsp
+
+An unofficial, unendorsed language server for meson written in C++
+
+
+
+**Snippet to enable the language server:**
+```lua
+require'lspconfig'.mesonlsp.setup{}
+```
+
+
+**Default values:**
+ - `cmd` :
+ ```lua
+ { "mesonlsp", "--lsp" }
+ ```
+ - `filetypes` :
+ ```lua
+ { "meson" }
+ ```
+ - `root_dir` :
+ ```lua
+ util.root_pattern("meson_options.txt", "meson.options", ".git")
+ ```
+
+
## metals
https://scalameta.org/metals/