aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorgithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2023-11-18 01:24:48 +0000
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2023-11-18 01:24:48 +0000
commita4083b0e875866a04e866ee5bd2b00ede52e9cac (patch)
treeb103973c0abbdf7333126b4776302f9520d56401 /doc
parentfeat: add autotools-language-server support (#2902) (diff)
downloadnvim-lspconfig-a4083b0e875866a04e866ee5bd2b00ede52e9cac.tar
nvim-lspconfig-a4083b0e875866a04e866ee5bd2b00ede52e9cac.tar.gz
nvim-lspconfig-a4083b0e875866a04e866ee5bd2b00ede52e9cac.tar.bz2
nvim-lspconfig-a4083b0e875866a04e866ee5bd2b00ede52e9cac.tar.lz
nvim-lspconfig-a4083b0e875866a04e866ee5bd2b00ede52e9cac.tar.xz
nvim-lspconfig-a4083b0e875866a04e866ee5bd2b00ede52e9cac.tar.zst
nvim-lspconfig-a4083b0e875866a04e866ee5bd2b00ede52e9cac.zip
docs: update server_configurations.md
skip-checks: true
Diffstat (limited to 'doc')
-rw-r--r--doc/server_configurations.md39
-rw-r--r--doc/server_configurations.txt39
2 files changed, 78 insertions, 0 deletions
diff --git a/doc/server_configurations.md b/doc/server_configurations.md
index 43b72854..6708f6a4 100644
--- a/doc/server_configurations.md
+++ b/doc/server_configurations.md
@@ -16,6 +16,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running
- [asm_lsp](#asm_lsp)
- [ast_grep](#ast_grep)
- [astro](#astro)
+- [autotools_ls](#autotools_ls)
- [awk_ls](#awk_ls)
- [azure_pipelines_ls](#azure_pipelines_ls)
- [bashls](#bashls)
@@ -925,6 +926,44 @@ require'lspconfig'.astro.setup{}
```
+## autotools_ls
+
+https://github.com/Freed-Wu/autotools-language-server
+
+`autotools-language-server` can be installed via `pip`:
+```sh
+pip install autotools-language-server
+```
+
+Language server for autoconf, automake and make using tree sitter in python.
+
+
+
+**Snippet to enable the language server:**
+```lua
+require'lspconfig'.autotools_ls.setup{}
+```
+
+
+**Default values:**
+ - `cmd` :
+ ```lua
+ { "autotools-language-server" }
+ ```
+ - `filetypes` :
+ ```lua
+ { "config", "automake", "make" }
+ ```
+ - `root_dir` :
+ ```lua
+ { "configure.ac", "Makefile", "Makefile.am", "*.mk" }
+ ```
+ - `single_file_support` :
+ ```lua
+ true
+ ```
+
+
## awk_ls
https://github.com/Beaglefoot/awk-language-server/
diff --git a/doc/server_configurations.txt b/doc/server_configurations.txt
index 43b72854..6708f6a4 100644
--- a/doc/server_configurations.txt
+++ b/doc/server_configurations.txt
@@ -16,6 +16,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running
- [asm_lsp](#asm_lsp)
- [ast_grep](#ast_grep)
- [astro](#astro)
+- [autotools_ls](#autotools_ls)
- [awk_ls](#awk_ls)
- [azure_pipelines_ls](#azure_pipelines_ls)
- [bashls](#bashls)
@@ -925,6 +926,44 @@ require'lspconfig'.astro.setup{}
```
+## autotools_ls
+
+https://github.com/Freed-Wu/autotools-language-server
+
+`autotools-language-server` can be installed via `pip`:
+```sh
+pip install autotools-language-server
+```
+
+Language server for autoconf, automake and make using tree sitter in python.
+
+
+
+**Snippet to enable the language server:**
+```lua
+require'lspconfig'.autotools_ls.setup{}
+```
+
+
+**Default values:**
+ - `cmd` :
+ ```lua
+ { "autotools-language-server" }
+ ```
+ - `filetypes` :
+ ```lua
+ { "config", "automake", "make" }
+ ```
+ - `root_dir` :
+ ```lua
+ { "configure.ac", "Makefile", "Makefile.am", "*.mk" }
+ ```
+ - `single_file_support` :
+ ```lua
+ true
+ ```
+
+
## awk_ls
https://github.com/Beaglefoot/awk-language-server/