diff options
| author | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2024-08-29 06:27:32 +0000 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2024-08-29 06:27:32 +0000 |
| commit | 6bfd9210e312af6cfedba05d272e85618c93ab0d (patch) | |
| tree | 8286827d68a6fdbf72c160e8d3967913ea7b7536 | |
| parent | feat: add snakeskin_ls server configuration (#3286) (diff) | |
| download | nvim-lspconfig-6bfd9210e312af6cfedba05d272e85618c93ab0d.tar nvim-lspconfig-6bfd9210e312af6cfedba05d272e85618c93ab0d.tar.gz nvim-lspconfig-6bfd9210e312af6cfedba05d272e85618c93ab0d.tar.bz2 nvim-lspconfig-6bfd9210e312af6cfedba05d272e85618c93ab0d.tar.lz nvim-lspconfig-6bfd9210e312af6cfedba05d272e85618c93ab0d.tar.xz nvim-lspconfig-6bfd9210e312af6cfedba05d272e85618c93ab0d.tar.zst nvim-lspconfig-6bfd9210e312af6cfedba05d272e85618c93ab0d.zip | |
docs: update server_configurations.md
skip-checks: true
| -rw-r--r-- | doc/server_configurations.md | 33 | ||||
| -rw-r--r-- | doc/server_configurations.txt | 33 |
2 files changed, 66 insertions, 0 deletions
diff --git a/doc/server_configurations.md b/doc/server_configurations.md index 4e65c0cc..2aa72656 100644 --- a/doc/server_configurations.md +++ b/doc/server_configurations.md @@ -253,6 +253,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running - [slint_lsp](#slint_lsp) - [smarty_ls](#smarty_ls) - [smithy_ls](#smithy_ls) +- [snakeskin_ls](#snakeskin_ls) - [snyk_ls](#snyk_ls) - [solang](#solang) - [solargraph](#solargraph) @@ -10710,6 +10711,38 @@ require'lspconfig'.smithy_ls.setup{} ``` +## snakeskin_ls + +https://www.npmjs.com/package/@snakeskin/cli + +`snakeskin cli` can be installed via `npm`: +```sh +npm install -g @snakeskin/cli +``` + + + +**Snippet to enable the language server:** +```lua +require'lspconfig'.snakeskin_ls.setup{} +``` + + +**Default values:** + - `cmd` : + ```lua + { "npx", "@snakeskin/cli", "lsp", "--stdio" } + ``` + - `filetypes` : + ```lua + { "ss" } + ``` + - `root_dir` : + ```lua + see source file + ``` + + ## snyk_ls https://github.com/snyk/snyk-ls diff --git a/doc/server_configurations.txt b/doc/server_configurations.txt index 4e65c0cc..2aa72656 100644 --- a/doc/server_configurations.txt +++ b/doc/server_configurations.txt @@ -253,6 +253,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running - [slint_lsp](#slint_lsp) - [smarty_ls](#smarty_ls) - [smithy_ls](#smithy_ls) +- [snakeskin_ls](#snakeskin_ls) - [snyk_ls](#snyk_ls) - [solang](#solang) - [solargraph](#solargraph) @@ -10710,6 +10711,38 @@ require'lspconfig'.smithy_ls.setup{} ``` +## snakeskin_ls + +https://www.npmjs.com/package/@snakeskin/cli + +`snakeskin cli` can be installed via `npm`: +```sh +npm install -g @snakeskin/cli +``` + + + +**Snippet to enable the language server:** +```lua +require'lspconfig'.snakeskin_ls.setup{} +``` + + +**Default values:** + - `cmd` : + ```lua + { "npx", "@snakeskin/cli", "lsp", "--stdio" } + ``` + - `filetypes` : + ```lua + { "ss" } + ``` + - `root_dir` : + ```lua + see source file + ``` + + ## snyk_ls https://github.com/snyk/snyk-ls |
