diff options
| author | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2023-11-18 01:24:48 +0000 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2023-11-18 01:24:48 +0000 |
| commit | a4083b0e875866a04e866ee5bd2b00ede52e9cac (patch) | |
| tree | b103973c0abbdf7333126b4776302f9520d56401 | |
| parent | feat: add autotools-language-server support (#2902) (diff) | |
| download | nvim-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
| -rw-r--r-- | doc/server_configurations.md | 39 | ||||
| -rw-r--r-- | doc/server_configurations.txt | 39 |
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/ |
